1.SpringMVC的注解开发
1.1创建项目
1.2完善项目
1.3导入依赖
1.4配置web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<!--其值要与自定义控制器中name的值的形式相同 -->
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
1.5配置SpringMVC配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--开启注解 -->
<mvc:annotation-driven></mvc:annotation-driven>
<!--配置自动扫描包 -->
<context:component-scan base-package="com.wanging.springmvc.controller"></context:component-scan>
<!--配置视图解析器 -->
<!--org.springframework.web.servlet.view.InternalResourceViewResolver-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"></property>
<property name="suffix" value=""></property>
</bean>
</beans>
1.6创建控制器
package com.wanging.springmvc.controller;
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;
@Controller
//当在java类上使用了该注解,此时想要访问该类中的处理程序[处理方法]
//就需要在工程名称后面加上本类的访问路径后再加上本类方法的路径
//http://localhost:8080/Annotation_war/HELLO/test1.test
//设置访问路径的时候可以设置通配符
// ? : 匹配任何单字符
//http://localhost:8080/Annotation_war/sHELLO/test1.test
//* : 匹配任意数量的字符
//http://localhost:8080/Annotation_war/wHELLO/wwtest1.test
//** : 匹配多个路径
//注意使用**时必须加“/”否则系统会将**认为是*
//http://localhost:8080/Annotation_war/HELLO/s/asd/asdasd/test1.do
//value表示访问路径[可以省略]
//@RequestMapping(value = "HELLO")
public class HelloController {
//此处代替了 URL解析器 & 控制器适配器 & 自定义的控制器 SpringMVC配置文件中只需要写入 视图解析器
//括号中的数据值就是自定义适配器中的name属性值
//此注解也可以作用在java类上表示配置这个java类的访问路径
//@RequestMapping("*test1.test")
// @RequestMapping(value = "/test1.do",method = RequestMethod.GET)
@RequestMapping(value = "/test1.do",method = RequestMethod.POST)
public ModelAndView tesAnnotation(){
ModelAndView mav = new ModelAndView();
String info = "HELLO,测试SpringMVCAnnotation";
mav.addObject("info",info);
mav.setViewName("test1.jsp");
return mav;
}
}
1.7创建jsp
<%--
Created by IntelliJ IDEA.
User: Administrator
Date: 2021/4/16 0016
Time: 11:34
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<html>
<head>
<title>测试SpringMVC注解</title>
</head>
<body>
<h1>${info}</h1>
</body>
</html>
1.8 配置服务部署项目
1.9 测试http://localhost:8080/Annotation_war/test1.do
2.@Controller注解
@Controller---表示我们所编写的java类是一个处理请求的控制器类。
只能作用在java类。
可以使用@Component去代替,在javaweb程序中是分层出来的为了表名java类是一个控制器,我们才使用@Controller
@Controller中包含有@Component。
@Controller与我们在spring中学习的@Service和@Repository将应用程序标记为不同的层。
数据访问层------@Repository
业务访问层------@Service
Web层【控制层】----@Controller
webapp------------静态资源
3.@RequestMapping
设置控制器类/请求处理方法的访问路径的
@RequestMapping可以作用在java类上,表示配置这个java类的访问路径;
如果控制器类中没有@RequestMapping("/hello"),那么我们要访问请求处理方法就可以直接使用请求处理方法上@RequestMapping("/test1.do")的访问路径。
@RequestMapping也可以作用在请求处理方法上,表示配置这个请求处理方法的访问路径。
@RequestMapping的常用的属性
1.value表示设置访问路径[可以省略]
@RequestMapping(value = "/test1.do")可以省略
@RequestMapping("/test1.do")
设置访问路径的时候可以设置通配符
? : 匹配任何单字符
例如:@RequestMapping("/?hello.test")
http://localhost:8080/spingmvc2/atest1.do
http://localhost:8080/spingmvc2/test1.do //错误
http://localhost:8080/spingmvc2/hhhtest1.do //错误
* : 匹配任意数量的字符
例如:@RequestMapping("/*hello.test")
http://localhost:8080/spingmvc2/test1.do
http://localhost:8080/spingmvc2/wtest1.do
http://localhost:8080/spingmvc2/wwwtest1.do
例如:@RequestMapping("/*/hello.test")
http://localhost:8080/spingmvc2/w/test1.do
http://localhost:8080/spingmvc2/www/test1.do
http://localhost:8080/spingmvc2/test1.do //错误
http://localhost:8080/spingmvc2/hhhh/www/test1.do //错误
** : 匹配多个路径
例如:@RequestMapping("/**/hello.test")
http://localhost:8080/spingmvc2/test1.do
http://localhost:8080/spingmvc2/w/test1.do
http://localhost:8080/spingmvc2/www/test1.do
http://localhost:8080/spingmvc2/hhh/www/test1.do
2.method--限制请求的访问方式【GET、POST.....】
表现形式:@RequestMapping(value = "/login.do",method = RequestMethod.POST )
Index.jsp
<%@page language="java" pageEncoding="UTF-8" %>
<html>
<body>
<form action="test1.do" method="get">
<input type="submit" value="测试Method属性"/>
</form>
</body>
</html>
package com.wangxing.springmvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Repository;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HelloController{
@RequestMapping(value = "/test1.do",method = RequestMethod.POST)
public ModelAndView testRequest(){
ModelAndView mav=new ModelAndView();
mav.addObject("info","hello,网星软件");
mav.setViewName("test.jsp");
return mav;
}
}
将index.jsp页面中的表单提交放射修改成post即可成功。
只能处理get请求
@RequestMapping(value = "/gethello.do",method = RequestMethod.GET)
@GetMapping(value = "/gethello.do")
只能处理post请求
@RequestMapping(value = "/gethello.do",method = RequestMethod.POST)
@PostMapping(value = "/gethello.do")