第一个 Spring-MVC 项目
创建动态 Web 项目,提供如下所述的以下信息
- 项目名称:DemoSpringMVCProject
- 目标运行时:设置为 Apache Tomcat v7.0 服务器
点击完成,我们成功创建了动态网络项目。
现在我们必须设置 Spring-MVC 框架:
- 在 “WebContent \ WEB-INF \” 文件夹下创建 web.xml ****
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>Demo9</display-name>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>demo</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
- DispatcherServlet 类拦截传入请求并确定哪个控制器处理请求。
- 我们将在创建 servlet.xml 时使用 servlet-namedemo
- 在 ‘WebContent \ WEB-INF \’ 文件夹下创建 demo-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: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/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
-
context:component-scan 用于扫描在 ‘com’ 包下定义的所有控制器。
-
ViewResolver 接口用于管理逻辑视图和实际视图之间的映射。视图解析器的预定义实现可用于映射视图。例如:InternalResourceViewResolver,VelocityViewResolver。
-
要搜索所有 jsp 页面,我们定义了前缀,它只是 setter 属性,它的值设置为 ’/ WEB-INF / jsp /’ (文件夹路径)。后缀只是 getter 属性,它的值被设置为 ’.jsp’ (搜索文件扩展名为 .jsp)
- 添加所需的库:
让我们在项目中添加 Spring Framework 和通用日志 API 库。为此,右键单击项目名称 DemoSpringMVCProject,然后按照上下文菜单中的以下选项进行操作:构建路径 - >配置构建路径以显示 Java 构建路径窗口,如下所示:
现在使用 Libraries 选项卡下的 Add External JARs 按钮从 Spring Framework 和 Common Logging 安装目录添加以下核心 JAR:
-
共享记录 -1.1.1
-
弹簧 AOP-4.1.6.RELEASE
-
弹簧方面,4.1.6.RELEASE
-
弹簧豆,4.1.6.RELEASE
-
弹簧上下文 4.1.6.RELEASE
-
弹簧上下文支持,4.1.6.RELEASE
-
弹簧芯 4.1.6.RELEASE
-
弹簧表达 -4.1.6.RELEASE
-
弹簧仪器 4.1.6.RELEASE
-
弹簧仪器 Tomcat 的 4.1.6.RELEASE
-
弹簧 JDBC-4.1.6.RELEASE
-
弹簧 JMS-4.1.6.RELEASE
-
弹簧消息传递 4.1.6.RELEASE
-
弹簧 ORM-4.1.6.RELEASE
-
弹簧 OXM-4.1.6.RELEASE
-
弹簧 - 测试 - 4.1.6.RELEASE
-
弹簧 -TX-4.1.6.RELEASE
-
弹簧网络 4.1.6.RELEASE
-
弹簧 webmvc-4.1.6.RELEASE
-
弹簧 webmvc 的 portlet-4.1.6.RELEASE
-
弹簧的 WebSocket-4.1.6.RELEASE
让我们转向控制器和 jsp 页面:
- 在 src 文件夹下创建一个 com.demo.controller 包。 ****
- 在 com.demo.controller 包下创建一个 LoginController 类 ****
package com.demo.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class LoginController {
@RequestMapping("/")
public String startPage(){
return "login";
}
@RequestMapping("/signin")
public String handleRequest(HttpServletRequest request){
String name = request.getParameter("name");
String pass = request.getParameter("password");
if(name.equals(pass))
{
return "welcome";
}else{
return "login";
}
}
}
- 在 ‘WebContent \ WEB-INF \ jsp \’ 下创建一个 login.jsp 和 welcome.jsp 页面 ****
login.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login Page</title>
</head>
<body>
<form action="signin">
<table>
<tr>
<td>User Name : </td>
<td><input type="text" name="name" id="name"/> </td>
</tr>
<tr>
<td>Password: </td>
<td><input type="text" name="password" id="password"/> </td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Login"/></td>
</tr>
</table>
</form>
</body>
</html>
welcome.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1> Welcome to Spring MVC !!! </h1>
</body>
</html>
在 localTomcat 服务器中添加 DemoSpringMVCProject 并在服务器上运行它。