1.新建项目
选择Spring—>SpringMVC——>Download
点击next,起好项目名称project name,我这里项目名是MVCTag,选择好项目的路径project location,然后点击确定就会自动加载SpringMVC所需要的全部jar包
项目新建完成,接下来
然后点击file 选择Project Structure进入如下页面:
点击fix后选择Add all missing dependencies of "MVCTag"at the artifact
SpringMVC也自动写了applicationContext.xml、web.xml、Dispatcher-servlet.xml(也就是以前写的mvc.xml)文件,如下:
自动生成的Dispatcher-servlet.xml文件只有模板,还要添加注解扫描和视图解析器
在jsp页面引入标签库
<%@ taglib prefix="form" uri="http://ww.springframework.org/tags/form"%>
定义index.jsp页面,在views文件夹下
引入的标签库
定义的前缀是form
下面来写一个form表单
<form:form>
<%@ taglib prefix="form" uri="http://ww.springframework.org/tags/form"%>
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<html>
<head>
<title>$Titles</title>
</head>
<body>
<form:form>
</form:form>
</body>
</html>
先定义Person类
Person类有两个属性name和age
把对象和表单绑定起来
通过对象的属性名和表单元素的path值一一对应来实现
下面是index.jsp页面代码
下面来写Controller
有上面的代码,可以看到
1. 定义了一个person,并且把name属性赋值zs和age属性赋值23【重点:待会返回到index页面,表单元素input标签中会显示值zs和23】
2. 返回值是index,由视图解析器自动添加前缀和后缀
3. tomcat运行,直接输入localhost:8888/MVCTag/FormDemo/testForm
4. 运行结果如下页面所示
自动显示了刚刚定义的zs和23