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 xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<!--
因为中央控制器本质上就是一个Servlet,因此需要添加Servlet依赖到项目中
servlet的name名称很关键,因为springMVC核心控制器会根据servlet的name
到/WEB-INF/目录中去寻找一个以servlet name为前缀,以-servlet.xml为后缀
的xml文件。如果你在servlet名称中设置为SpringMVC,name就意味着要写一个
springMVC-servlet.xml的文件
但是SpringMVC也提供了灵活的配置方式,可以将mvc的核心配置文件存放在任意的位置
可以通过DispatcherServlet中提供的属性ContextConfigLocation设置核心
配置文件的位置,并且文件命名也可以自定义
-->
<servlet>
<servlet-name>mvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:mvc-servlet.xml</param-value>
</init-param>
<!--设置当前的servlet作为第一启动项-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc</servlet-name>
<!--表示可以请求所有的地址-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
mvc-servlet.xml
<?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相关的注解配置-->
<mvc:annotation-driven/>
<!--扫描指定包以及包下面的bean组件-->
<context:component-scan base-package="com.softeem"/>
<!--
配置视图解析器
如果controller方法返回值为字符串"result" 则 此时SpringMVC框架会渲染一个/WEB-INF/result
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/admin/"/>
<!--后缀-->
<property name="suffix" value=".jsp"/>
</bean>
</beans>
from.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
//获取当前项目中的上下文路径
String path = request.getContextPath();
//拼接获取完整的项目与服务器的根路径
//http://localhost:8081/_20211009_01/
String basePath = request.getScheme() + "://"
+ request.getServerName()
+ ":"
+ request.getServerPort()
+ path + "/";
%>
<html>
<head>
<title>表单提交</title>
<base href="<%=basePath%>">
<meta charset="utf-8">
</head>
<body>
<form action="user/add" method="get">
<input type="text" name="uname" placeholder="请输入名字"><br />
<button>提交表单</button>
</form>
</body>
</html>
UserController
package com.softeem.controller;
import com.softeem.pojo.User;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
@RequestMapping("/user")
@Controller
public class UserController {
@RequestMapping(path = "/login",method = RequestMethod.GET)
public String login(){
System.out.println("用户登录...");
return "login";
}
//前台表单传输数据的时候,直接通过action对controller中的方法进行请求
//input输入框中输入的内容name值要和方法的参数的名称相对应
//然后就可以实现传值的过程
//SpringMVC可以自动进行数据类型之间的转换
@RequestMapping(path = "/reg",method = RequestMethod.GET)
public String reg(String uname,String upass,String age){
System.out.println("账号:" + uname + "\n" + "密码:" + upass + "\n" + "年龄" + age);
return "reg";
}
//如果表单控件的name属性值和控制器方法名称不一致,如何处理
//在参数前面加一个@RequestParam注解,用来统一前台和后台的参数属性不同的问题
@RequestMapping(path = "/add",method = RequestMethod.GET)
public String add(@RequestParam("uname") String username){
System.out.println("用户注册:" + username);
return "reg";
}
@RequestMapping(path = "/addUser")
public String addUser(User user){
System.out.println("获取数据:" + user);
return "login";
}
@RequestMapping(path = "/addDate")
public String addDate(@DateTimeFormat(pattern = "yyyy-MM-dd") Date birthday){
return "login";
}
//如果说要使用serlvet原生的信息内容,那么我们直接在控制器的方法中定义就可以了,Spring
@RequestMapping("/list")
public String list(HttpServletRequest request , HttpServletResponse response){
String key = request.getParameter("keyword");
System.out.println(key + "=============");
return null;
}
}