博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springMVC注解及优化
阅读量:6035 次
发布时间:2019-06-20

本文共 2042 字,大约阅读时间需要 6 分钟。

1. 新建web project

2. 添加jar

3. 改写web.xml, 注意spring-servlet.xml的名字 

index.jsp
springMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath*:config/springAnnotation-servlet.xml
1
springMVC
/

 4. 写 springAnnotation-servlet.xml

 5. 新建包 com.tgb.web.controller.annotation, 新建类userController.java

    注意加注解的方式, 类注解和方法注解

package com.tgb.web.controller.annotation;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.servlet.ModelAndView;@Controllerpublic class UserController {	@RequestMapping(value="/user/addUser", method=RequestMethod.GET)	public ModelAndView addUser(){		String result = "this is addUser---------";		return new ModelAndView("/annotation","result",result); 	}	@RequestMapping(value="/user/delUser", method=RequestMethod.GET)	public ModelAndView delUser(){		String result = "this is delUser---------";		return new ModelAndView("/annotation","result",result); 	}}

 6. 根据spring-servlet.xml设置, 在/WEB-INF/jsp/下新建  annotation.jsp  

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>      My JSP 'annotation.jsp' starting page      		  
annotation 注解1
${result }

 

7. IE端访问:     

http://localhost:8080/springMVC3/user/addUser

 

显示结果: 

annotation 注解1  this is addUser---------

  

  

  

转载于:https://www.cnblogs.com/wujixing/p/5600557.html

你可能感兴趣的文章
071:【Django数据库】ORM聚合函数详解-Avg
查看>>
Hadoop在安装snappy过程中的问题
查看>>
py 的 第 7 天
查看>>
Bounce(弹走绵羊)lct裸题
查看>>
BZOJ3238 [Ahoi2013]差异
查看>>
mybatis的动态sql中collection与assoction
查看>>
机器学习二分类模型评价指标:准确率\召回率\特异度等
查看>>
<jsp:include page>和<%@ include file%>的区别
查看>>
js文件、图片上传(原生方法和jquery的ajax两种都有)
查看>>
JS-DOM的知识点及应用
查看>>
webservice测试窗体只能用于来自本地计算机的请求
查看>>
多列等高布局
查看>>
习题6-2 S-Trees(树)
查看>>
新的展望
查看>>
[Usaco2012 Dec]First! BZOJ3012
查看>>
Python:asyncio模块学习
查看>>
Spider_Man_3 の selenium
查看>>
实习小白::(转) Cocos2d-x 3.0 开发(十二)在CocoStudio中使用粒子挂载与曲线动画...
查看>>
「postgre」查看DB的物理占用空间
查看>>
Oracle DB 优化-AWR及相关内容
查看>>