Java的WEB框架中,Struts2应该是最著名的,不过最近试了试Spring3 MVC,感觉好爽啊,几乎像ASP.Net MVC3一样舒服,以后就用它了。简单记录一下过程,没有技术含量。
1、准备包
下载的是spring framework 3.2.0,从中抽取以下jar到工程的WEB-INF/lib下:
spring-beans-3.2.0.RELEASE.jar
spring-context-3.2.0.RELEASE.jar
spring-core-3.2.0.RELEASE.jar
spring-expression-3.2.0.RELEASE.jar
spring-web-3.2.0.RELEASE.jar
spring-webmvc-3.2.0.RELEASE.jar
另外还需要几个第三方jar包,记录日志和处理json:
commons-logging-1.1.1.jar
jackson-core-als-1.9.11.jar
jackson-mapper-asl-1.9.11.jar
2、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>mvc</display-name>
<!--指定spring配置文件-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<!--servlet名字,随意-->
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<!--servlet名字-->
<servlet-name>spring</servlet-name>
<!--拦截所有请求,对静态文件会有问题,在spring-servlet.xml中解决-->
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
3、WEB-INF/spring-servlet.xml
<?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">
<!-- 启动注解驱动的Spring MVC功能,注册请求url和注解POJO类方法的映射-->
<mvc:annotation-driven />
<!-- 启动包扫描功能,以便注册带有@Controller、@Service、@repository、@Component等注解的类成为spring的bean -->
<context:component-scan base-package="com.test.mvc.web" />
<!-- 对模型视图名称的解析,在WEB-INF/jsp目录下找对应的jsp文件 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
<!--放过/scripts下的静态文件-->
<mvc:resources mapping="/scripts/**" location="/scripts/" />
</beans>
4、WEB-INF/applicationContext.xml
spring的配置文件,由于我们不使用它的其它功能,暂时放个空的就好了。
<?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:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.0.xsd">
</beans>
5、写Controller
package com.test.mvc.web;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.*;
/**
* 控制器,用Controller注解
*/
@Controller
public class HomeController {
/**
* 映射到/welcome
*/
@RequestMapping(value = "/welcome")
public ModelAndView welcome(){
ModelAndView mv = new ModelAndView("welcome"); //使用welcome.jsp,如果不写,根据url默认也是welcome.jsp
mv.addObject("hello", "Hello"); //model中增加一个名为hello的字符串
Client client = new Client();
client.setName("User");
mv.addObject("client", client); //再增加一个名为client的自定义对象
return mv;
}
/**
* 如果不需要Model,直接返String更简单,对应的view为login_page.jsp
*/
@RequestMapping(value = "/login")
public String login(){
return "login_page";
}
/**
* 一个返回json的方法,用ResponseBody标识
* 可以在url中定义参数中,实现RESTful真是太简单了
* 传参很灵活,可以从url中取,也可以定义普通的
*/
@RequestMapping(value="/client/{name}", method = RequestMethod.GET)
@ResponseBody
public Client getClient(@PathVariable String name, String title){
Client client = new Client();
client.setName(title+ " " + name);
return client;
}
}
里面用到了Client,很简单的POJO:
package com.test.mvc.web;
/**
* 自定义一个POJO
*/
public class Client {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
6、写视图
根据spring-servlet.xml中的配置,视图要放到WEB-INF/jsp下,新建welcome.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Spring MVC</title>
<script src="scripts/jquery-1.4.2.js"></script>
<script>
$(function(){
$("#btnGet").click(function(){
$.ajax({
type: 'GET',
url : 'client/Tian', //通过url传递name参数
dataType : 'json',
data: {title: "Mr"}, //通过data传递title参数
success : function(data) {
alert(data.name);
},
error : function(data) {
alert(data.responseText);
}
});
});
});
</script>
</head>
<body>
<!-- 显示model中的hello字符串和client对象的name -->
${hello}
${client.name}
<br/>
<input id="btnGet" type="button" value="get client" />
</body>
</html>
相关推荐
而Struts2则是一个基于MVC设计模式的Web应用框架,它极大地简化了Java Web应用程序的开发工作。然而,如同任何软件一样,这两个框架也可能会存在安全漏洞,需要定期更新和打补丁以确保系统的安全性。 标题"Spring架...
在整合过程中,通常会使用Spring的DispatcherServlet作为前端控制器,Struts2的FilterDispatcher会被替换掉,所有的请求先由Spring处理,然后转发到Struts2的Action。同时,Spring可以管理MyBatis的...
在实际项目中,开发者通常会利用Spring3的MVC框架替换Struts2,因为Spring MVC提供了更现代、更灵活的解决方案,同时Spring作为一个整体框架,可以更好地整合其他模块,如Spring Security、Spring Batch等。...
- **Spring MVC**:与Struts2类似,提供Web应用的MVC结构,可以与Struts2共存或替换。 - **集成其他框架**:Spring提供了与Hibernate、MyBatis等持久层框架的集成方案。 3. **MyBatis3 框架**: - **动态SQL**:...
4. 使用Spring MVC:如果选择Spring MVC替换Struts 1,那么需要配置DispatcherServlet,编写Controller类,利用注解或XML配置进行路由设定。 5. 整合Struts 2与Spring:通过Spring插件(struts2-spring-plugin)实现...
它提供了IOC(Inversion of Control,控制反转)和AOP(Aspect-Oriented Programming,面向切面编程)等功能,可以用来管理对象的生命周期和依赖关系,同时,Spring还包含了Spring MVC,可以与Struts2一起用于构建...
标题中的“使用sitemesh替换tiles2,spring mvc+spring web flow+sitemsh”指出了一种在Spring MVC和Spring Web Flow项目中用Sitemesh替代Tiles2作为页面布局工具的技术实践。Sitemesh和Tiles2都是用于创建可重用的...
标题 "spring+mybatis3+struts2" 暗示了这是一个关于使用Spring、MyBatis3和Struts2框架进行Web应用开发的主题。这三个技术是Java领域中常见的开源框架,它们各自负责不同的职责,共同构建出一个完整的MVC(Model-...
2. **使用DelegatingRequestProcessor替换RequestProcessor**:在`struts-config.xml`中,将Struts的RequestProcessor替换为Spring的`DelegatingRequestProcessor`,并在Spring配置文件中定义与Struts `...
在“lib”文件夹中,我们通常会找到这些框架的jar包文件,例如spring-beans.jar、spring-context.jar、struts2-core.jar、mybatis-3.x.x.jar等,这些都是运行SSM项目所必需的依赖库。除此之外,可能还会包含其他如...
5. **整合过程**:SSIS的整合涉及配置文件的调整,包括Spring的beans.xml、struts-config.xml(或struts2的配置文件)、mybatis的sqlMapConfig.xml等。通常,Spring会作为核心框架,管理其他两个框架的bean实例。...
这是 Spring-Struts2 整合的常见方式,适用于 Struts2 框架。 步骤: - 添加 Spring 和 Struts2 库到项目。 - 配置 Struts2 的 `struts-plugin.xml`,声明 Spring 的插件。 ```xml <constant name="struts....
3. **Action类的配置**:在Struts2的配置文件(通常是`struts.xml`或`struts-plugin.xml`)中,我们不再直接创建Action类的实例,而是通过Spring的ID来引用。例如: ```xml <result name="success">/success....
- 将Struts1中的`Action`类替换为由Spring管理的bean。这通常通过将`Action`的类型设置为`DelegatingActionProxy`来实现。 ```xml <action path="/login" type="org.springframework.web.struts....
3. **Struts2**:Struts2是一个基于MVC(Model-View-Controller)设计模式的Web应用框架,它继承了Struts1的优点,并引入了更多现代框架的特点,如拦截器和OGNL表达式。Struts2使得业务逻辑与表现层分离,降低了代码...
Spring还能与Struts和Hibernate进行无缝集成,比如通过Spring MVC替换Struts,或者使用Spring的HibernateTemplate来简化数据库操作。 至于国际化(Internationalization,简称i18n),在Web应用中通常涉及到多语言...
Spring MVC的扩展性远超Struts的Plugin机制。虽然Webwork2通过interceptor提供了扩展性,但与Spring的IoC容器相比仍显得较为局限。Spring MVC允许开发者在控制器层直接定义AOP,提供更丰富的功能和控制。 4. **与...
3. **配置Struts2**:在Struts2的配置文件(如struts.xml)中,设置Spring插件,指定Spring配置文件的位置,并声明Action类的类型为Spring管理的bean。 4. **编写Action类**:Action类不再需要硬编码依赖,而是声明...
在实际开发中,可以根据项目需求进行调整,例如使用Spring MVC替换Struts2,或者使用MyBatis的注解方式替代XML配置。总之,理解并熟练掌握这三大框架的整合,对于Java Web开发人员来说是非常重要的技能。