springMVC系列之HelloWord项目——01
springMVC系列之HelloWord项目——01
摘要:通过整体结构图显示整体结构、然后是具体的一步一步搭建最简单的项目。力求清晰、明了、对配置内容有简单的解释、理解不到之处希望不吝指出。
一:整体结构图
二:搭建步骤
1、 创建一个web项目。
2、 引入jar包、与spring基本一样、但是要多引入commons-logging.jar
3、 javaEE的项目一般都会有一个入口——web.xml、如同我们在使用struts2的时候配置的filter、使用原始的Servlet配置的Servlet一样,springMVC也是从web.xml入手,配置web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <!--最原始、简单的配置信息。拦截所有请求、使用springMVC指定的Servlet处理--> <servlet> <servlet-name>springMVC</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springMVC</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
4、 配置springMVC-servlet.xml(默认放在WEB-INFO下):
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <!-- name的值是我们在浏览器中输入的访问路径、class是对请求的处理的controller --> <bean name="/test1/helloworld" class="com.chy.web.controller.HelloWorldController" /> <!-- 视图解析器的配置 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
5、 实现springMVC-servlet.xml中处理指定访问路径的class:
package com.chy.web.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.Controller; public class HelloWorldController implements Controller{ public ModelAndView handleRequest(HttpServletRequest arg0, HttpServletResponse arg1) throws Exception { System.out.println("hello dear mr.chen !"); //这里返回的ModelAndView("welcome")中的welcome对应根目录下的welcome.jsp return new ModelAndView("welcome"); } }
6、 编写请求被处理后跳转的页面 ——welcome.jsp:
随便。。。。。
更多内容: springMVC系列之目录——00
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。