真的梦想,不是非得高大上或者文艺范儿,它就是对更好生活的美好期望,像人在黑夜里抬头望星空一样质朴,像花儿向着太阳一样生生不息。
WEB-INF/views/test/add.ftl内容:
<!DOCTYPE html>
<html lang ="en" >
<head >
<meta charset ="utf-8" />
<title > 新增信息</title >
</head >
<body >
<form id ="addForm" method ="post" action ="${request.contextPath}/test/add" >
<table border ="1" bordercolor ="#cccccc" cellpadding ="0" cellspacing ="0" >
<tr >
<td colspan ="4" bgcolor ="#1d98db" > <font size ="3" > 新增信息</font > </td >
</tr >
<tr >
<td > 姓名:</td >
<td >
<input type ="text" name ="name" >
</td >
</tr >
<tr >
<td > 用户ID:</td >
<td >
<input type ="text" name ="userId" >
</td >
</tr >
</table >
<p >
<button type ="submit" > 保存</button >
<button onclick ="history.go(-1);return false;" > 返回</button >
</p >
</form >
</body >
</html >
WEB-INF/views/test/edit.ftl内容:
<!DOCTYPE html>
<html lang ="en" >
<head >
<meta charset ="utf-8" />
<title > 修改信息</title >
</head >
<body >
<form id ="editForm" method ="post" action ="${request.contextPath}/test/edit" >
<table border ="1" bordercolor ="#cccccc" cellpadding ="0" cellspacing ="0" >
<tr >
<td colspan ="4" bgcolor ="#1d98db" > <font size ="3" > 修改信息</font > </td >
</tr >
<tr >
<td > 姓名:</td >
<td >
<input type ="hidden" name ="id" value ="${test.id}" >
<input type ="text" name ="name" value ="${employee.name}" >
</td >
</tr >
<tr >
<td > 用户ID:</td >
<td >
<input type ="text" name ="userId" value ="${test.userId}" >
</td >
</tr >
</table >
<p >
<button type ="submit" > 保存</button >
<button onclick ="history.go(-1);return false;" > 返回</button >
</p >
</form >
</body >
</html >
WEB-INF/views/test/list.ftl内容:
<!DOCTYPE html>
<html lang ="en" >
<head >
<meta charset ="utf-8" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<title > 列表</title >
</head >
<body >
<#if tests ?size gt 0 >
<table border ="0" bordercolor ="#cccccc" cellpadding ="0" cellspacing ="0" >
<tr >
<th class ="al_list1" > 编号</th >
<th class ="al_list3" > 名称</th >
<th class ="al_list1" > 用户ID</th >
<th class ="al_list3" > 操作</th >
</tr >
<#list tests as obj >
<tr >
<td class ="al_list1" >
${obj.id}
</td >
<td class ="al_list3" > ${obj.name}</td >
<td class ="al_list1" > ${obj.userId}</td >
<td class ="al_list3" >
<a href ="${request.contextPath}/test/toEdit?id=${obj.id}" > 修改</a >
</td >
</tr >
</#list >
</table >
</#if >
</body >
</html >
WEB-INF/views/index.ftl内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns ="http://www.w3.org/1999/xhtml" >
<head >
<title > index</title >
</head >
<body >
<a href ="/test/" > 查看数据列表</a >
</body >
</html >
WEB-INF/web.xml内容:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance"
xmlns:web ="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation ="http://xmlns.jcp.org/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" >
<listener >
<listener-class > org.springframework.web.context.ContextLoaderListener</listener-class >
</listener >
<context-param >
<param-name > contextConfigLocation</param-name >
<param-value > classpath:spring-config.xml</param-value >
</context-param >
<servlet >
<servlet-name > springmvc</servlet-name >
<servlet-class > org.springframework.web.servlet.DispatcherServlet</servlet-class >
<init-param >
<param-name > contextConfigLocation</param-name >
<param-value > classpath:spring-config-mvc.xml</param-value >
</init-param >
<load-on-startup > 1</load-on-startup >
</servlet >
<filter >
<filter-name > hiddenHttpMethodFilter</filter-name >
<filter-class > org.springframework.web.filter.HiddenHttpMethodFilter</filter-class >
</filter >
<filter >
<filter-name > encodingFilter</filter-name >
<filter-class > org.springframework.web.filter.CharacterEncodingFilter</filter-class >
<init-param >
<param-name > encoding</param-name >
<param-value > UTF-8</param-value >
</init-param >
</filter >
<servlet-mapping >
<servlet-name > springmvc</servlet-name >
<url-pattern > /</url-pattern >
</servlet-mapping >
<filter-mapping >
<filter-name > encodingFilter</filter-name >
<servlet-name > springmvc</servlet-name >
</filter-mapping >
<filter-mapping >
<filter-name > hiddenHttpMethodFilter</filter-name >
<servlet-name > springmvc</servlet-name >
</filter-mapping >
</web-app >
webapp/index.jsp内容:
<html >
<body >
<h2 > Hello World!</h2 >
</body >
</html >
未完待续