- 浏览: 106759 次
- 性别:
- 来自: 武汉
最新评论
-
hnlrzy:
找了一天,结果找到了7年前的老贴,相见恨晚。分享的人万岁!
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理 -
我是城墙:
有jar包没?麻烦啊!
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理 -
di1984HIT:
学习了。呵呵。
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理 -
yanyujiang2008:
前台的easyUI是不是漏掉了addOrUpdate这部分的代 ...
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理 -
shmily2038:
持久化对象不能直接返回,需要转为vo再返回,你这边需要再转一次 ...
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理
临时应急做了两个月的ASP.NET,终于又回到Java上来了,还是Java感觉亲切啊。马上要开发一个新的项目,最近感觉spring mvc势头比较猛,就了解了一下,以前觉得spring mvc用起来较麻烦,所以一直用struts2,但了解了一下spring3 mvc,一下子就喜欢上了它,下个项目决定就用它了,RESTful URL、几乎0配置、不需要实现任何接口或继承任何类的Controller、方法级别的拦截,一个方法对应一个url、灵活的方法参数和返回值、多种view、处理ajax的请求更是方便...
下面的小例子用了spring mvc和hibernate,只是简单的用户增删改查,没有用ajax,ajax的版本在这里:Spring3 MVC + jQuery easyUI 做的ajax版本用户管理(http://www.iteye.com/topic/1081739),给和我一样准备用spring mvc的朋友参考一下吧。jar包如图:
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"> <!-- 默认的spring配置文件是在WEB-INF下的applicationContext.xml --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <filter> <filter-name>Set Character Encoding</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> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value><!-- 强制进行转码 --> </init-param> </filter> <filter-mapping> <filter-name>Set Character Encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- 默认所对应的配置文件是WEB-INF下的{servlet-name}-servlet.xml,这里便是:spring3-servlet.xml --> <servlet> <servlet-name>spring3</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring3</servlet-name> <!-- 这里可以用 / 但不能用 /* ,拦截了所有请求会导致静态资源无法访问,所以要在spring3-servlet.xml中配置mvc:resources --> <url-pattern>/</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
applicationContext.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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd" default-autowire="byName"> <!-- 注意上面的default-autowire="byName",如果没有这个声明那么HibernateDaoSupport中的sessionFactory不会被注入 --> <!-- 约定优于配置,约定优于配置 --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"></property> <property name="username" value="root"></property> <property name="password" value="root"></property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="mappingDirectoryLocations"> <list><!-- 这里直接映射的pojo类所在的包,简单方便不用没次加一个pojo类都需要到这里来添加 --> <value>classpath:com/fsj/spring/model</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> <prop key="hibernate.show_sql"> true </prop> </props> </property> </bean> <!-- 自动扫描组件,这里要把web下面的 controller去除,他们是在spring3-servlet.xml中配置的,如果不去除会影响事务管理的。--> <context:component-scan base-package="com.fsj.spring"> <context:exclude-filter type="regex" expression="com.fsj.spring.web.*"/> </context:component-scan> <!-- 下面是配置声明式事务管理的,个人感觉比用注解管理事务要简单方便 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> <aop:config> <aop:advisor pointcut="execution(* com.fsj.spring.service.*Service.*(..))" advice-ref="txAdvice"/> </aop:config> <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="query*" read-only="true"/> <tx:method name="find*" read-only="true"/> <tx:method name="load*" read-only="true"/> <tx:method name="*" rollback-for="Exception"/> </tx:attributes> </tx:advice> </beans>
spring3-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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" 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-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" default-autowire="byName"> <!-- 约定优于配置,约定优于配置 --> <!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd --> <mvc:resources mapping="/img/**" location="/img/"/> <mvc:resources mapping="/js/**" location="/js/"/> <mvc:resources mapping="/css/**" location="/css/"/> <!-- 扫描所有的controller --> <context:component-scan base-package="com.fsj.spring.web" /> <!-- InternalResourceViewResolver默认的就是JstlView所以这里就不用配置viewClass了 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/view/"></property> <property name="suffix" value=".jsp"></property> </bean> <!-- 启用基于注解的处理器映射,添加拦截器,类级别的处理器映射 --> <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> <property name="interceptors"> <list> <bean class="com.fsj.spring.util.MyHandlerInterceptor"/> </list> </property> </bean> <!-- 配置一个基于注解的定制的WebBindingInitializer,解决日期转换问题,方法级别的处理器映射, 有人说该bean要放在context:component-scan前面,要不然不起作用,但我试的放后面也可以啊。 --> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="cacheSeconds" value="0" /> <property name="webBindingInitializer"> <bean class="com.fsj.spring.util.MyWebBinding" /> </property> </bean> </beans>
log4j的就不贴出来了。
两个HelloWorldController如下:
package com.fsj.spring.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /* * 不需要实现任何接口,也不需要继承任何的类 */ @Controller public class HelloWorldController { /** * 方法都可以接受的参数(参数数量和顺序没有限制): HttpServletRequest,HttpServletResponse,HttpSession(session必须是可用的) ,PrintWriter,Map,Model,@PathVariable(任意多个), @RequestParam(任意多个), @CookieValue (任意多个),@RequestHeader,Object(pojo对象) ,BindingResult等等 * * 返回值可以是:String(视图名),void(用于直接response),ModelAndView,Map ,Model,任意其它任意类型的对象(默认放入model中,名称即类型的首字母改成小写),视图名默认是请求路径 */ @RequestMapping("/helloWorld") public ModelAndView helloWorld() { ModelAndView mav = new ModelAndView(); mav.setViewName("login"); mav.addObject("message", "Hello World!"); return mav; } }
package com.fsj.spring.web; import java.util.List; import javax.servlet.http.HttpServletRequest; import org.apache.commons.lang.StringUtils; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import com.fsj.spring.model.TDept; import com.fsj.spring.model.TUser; import com.fsj.spring.service.IDeptService; import com.fsj.spring.service.IUserService; import com.fsj.spring.util.Constants; @Controller @RequestMapping("/user") public class UserController { private IUserService userService; private IDeptService deptService; public IDeptService getDeptService() { return deptService; } public void setDeptService(IDeptService deptService) { this.deptService = deptService; } public IUserService getUserService() { return userService; } public void setUserService(IUserService userService) { this.userService = userService; } @RequestMapping(value="/login",method=RequestMethod.POST) public String login(@RequestParam String name,@RequestParam String password,Model model,HttpServletRequest request) throws Exception{ TUser user1 = userService.getUserByName(name); if(user1 == null) { model.addAttribute("message", "用户不存在"); return "login"; }else if(password == null || !password.equals(user1.getPassword()) ){ model.addAttribute("message", "密码错误"); return "login"; }else { request.getSession().setAttribute(Constants.USER_INFO_SESSION, user1); return "welcome"; } } @RequestMapping(value="/login1",method=RequestMethod.POST) public String login1(TUser user,HttpServletRequest request,Model model) throws Exception{ TUser user1 = userService.getUserByName(user.getName()); if(user1 == null) { model.addAttribute("message", "用户不存在"); return "login"; }else if(user.getPassword() == null || !user.getPassword().equals(user1.getPassword()) ){ model.addAttribute("message", "密码错误"); return "login"; }else { request.getSession().setAttribute(Constants.USER_INFO_SESSION, user1); return "welcome"; } } @RequestMapping(value="/list") public String list(Model model,HttpServletRequest request) throws Exception { List<TUser> userList = userService.getUserList(); model.addAttribute("userList", userList); List<TDept> deptList = deptService.getDeptList(); model.addAttribute("deptList", deptList); if(StringUtils.isNotBlank(request.getParameter("resMess")) && StringUtils.isNotBlank(request.getParameter("opeMess"))) { model.addAttribute("message",setOperateMessage(request.getParameter("resMess"),request.getParameter("opeMess"),"用户")); } return "user/list"; } private String setOperateMessage(String resMess,String opeMess,String modMess) { //TODO 以后可以和写日志结合在一起 String ope = ""; String res = ""; if(Constants.OPERATE_TYPE_ADD.equals(opeMess)) { ope = "增加"; }else if(Constants.OPERATE_TYPE_UPDATE.equals(opeMess)) { ope = "更新"; }else if(Constants.OPERATE_TYPE_DELETE.equals(opeMess)) { ope = "删除"; } if(Constants.RESULT_SUCCESS.equals(resMess)) { res = "成功"; }else if(Constants.RESULT_FAILED.equals(resMess)) { res = "失败"; } return ope + modMess + res; } /* * 同样的请求路径 user/add 如果是get请求就转到增加页面去,如果是post请求就做add操作 */ @RequestMapping(value="/add",method=RequestMethod.GET) public String toAdd(Model model) throws Exception{ List<TDept> deptList = deptService.getDeptList(); model.addAttribute("deptList", deptList); return "user/add"; } @RequestMapping(value="/add",method=RequestMethod.POST) public String doAdd(TUser user,Model model) throws Exception{ try { userService.addUser(user); model.addAttribute("resMess", Constants.RESULT_SUCCESS); } catch (Exception e) { e.printStackTrace(); model.addAttribute("resMess", Constants.RESULT_FAILED); throw e; } model.addAttribute("opeMess", Constants.OPERATE_TYPE_ADD); //重定向,防止重复提交,当然这样不能完全解决重复提交的问题,只是简单处理一下,若要较好的防止重复提交可以结合token做, //以“/”开关,相对于当前项目根路径,不以“/”开关,相对于当前路径 //return "redirect:/user/list"; return "redirect:list"; } /* * Restful模式路径: * 注意这里/update/{id}和@PathVariable("id")中id要一致,这样不管用debug模式还是release模式编译都没问题 * 也可以简写成@PathVariable int id,但这样只能以debug模式编译的时候正确,如果用release编译就不正确了,因为如果用release模式编译会把参数的名字改变的 * 一般IDE工具都是以debug模式编译的,javac是以release模式编译的 * 同样的请求路径 user/update 如果是get请求就转到增加页面去,如果是post请求就做update操作 */ @RequestMapping(value="/update/{id}",method=RequestMethod.GET) public String toUpdate(@PathVariable("id") int id, Model model) throws Exception{ model.addAttribute("user",userService.getUserById(id)); model.addAttribute("deptList", deptService.getDeptList()); return "user/update"; } @RequestMapping(value="/update/{id}",method=RequestMethod.POST) public String doUpdate(@PathVariable("id") int id, TUser user,Model model) throws Exception{ try { userService.updateUser(user); model.addAttribute("resMess", Constants.RESULT_SUCCESS); } catch (Exception e) { e.printStackTrace(); model.addAttribute("resMess", Constants.RESULT_FAILED); throw e; } model.addAttribute("opeMess", Constants.OPERATE_TYPE_UPDATE); //return "redirect:../list"; //重定向,防止重复提交,以“/”开关,相对于当前项目根路径,不以“/”开关,相对于当前路径 return "redirect:/user/list"; } @RequestMapping(value="/delete/{id}") public String delete(@PathVariable("id") int id,Model model)throws Exception{ try { userService.deleteUser(id); model.addAttribute("resMess", Constants.RESULT_SUCCESS); } catch (Exception e) { e.printStackTrace(); model.addAttribute("resMess", Constants.RESULT_FAILED); throw e; } model.addAttribute("opeMess", Constants.OPERATE_TYPE_DELETE); return "redirect:/user/list";//重定向 } }
下面的例子中没有jar包,jar太大了超过10M了,请自己加jar包
评论
7 楼
zhangyou1010
2011-06-08
spriing ----->spring
6 楼
ferly_j
2011-06-08
不错,挺全了的
5 楼
太阳神喻
2011-06-07
还有些什么不足的地方还请朋友指点
4 楼
太阳神喻
2011-06-07
6. 重复提交的问题,解决办法:我只是简单的用了重定向的方法,如果用户的网络卡,不停的F5刷新还是会重复提交的,可以结合token去处理。
3 楼
太阳神喻
2011-06-07
5. 用Interceptor做简单的权限控制:
<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> <property name="interceptors"> <list> <bean class="com.fsj.spring.util.MyHandlerInterceptor"/> </list> </property> </bean>
package com.fsj.spring.util; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; public class MyHandlerInterceptor extends HandlerInterceptorAdapter { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { //就简单判断了一下,如果要详细控制可以用spring security String url = request.getRequestURI(); if(url.endsWith("helloWorld") || url.endsWith("user/login") || url.endsWith("user/login1")) return true; if(request.getSession() != null && request.getSession().getAttribute(Constants.USER_INFO_SESSION) != null) return true; response.sendRedirect(request.getContextPath() + "/helloWorld"); return false; } }
2 楼
太阳神喻
2011-06-07
3. 之前做项目有时会忘记添加hirbernate的映射文件,所以把sessionFactory的配置改成
4. 事务管理失效问题,解决办法:在applicationContext.xml中的自动扫描组件要除去扫描controller,在spring3-servlet.xml中扫描controller
applicationContext.xml中
spring3-servlet.xml中
<context:component-scan base-package="com.fsj.spring.web" />
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="mappingDirectoryLocations"> <list><!-- 这里直接映射的pojo类所在的包,简单方便不用没次加一个pojo类都需要到这里来添加 --> <value>classpath:com/fsj/spring/model</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> <prop key="hibernate.show_sql"> true </prop> </props> </property> </bean>
4. 事务管理失效问题,解决办法:在applicationContext.xml中的自动扫描组件要除去扫描controller,在spring3-servlet.xml中扫描controller
applicationContext.xml中
<context:component-scan base-package="com.fsj.spring"> <context:exclude-filter type="regex" expression="com.fsj.spring.web.*"/> </context:component-scan>
spring3-servlet.xml中
<context:component-scan base-package="com.fsj.spring.web" />
1 楼
太阳神喻
2011-06-07
在编码过程中曾遇到过以下问题,都一一解决了:
1.静态资源无法访问,解决办法用:mvc:resources,不过mvc:resources是3.04新增功能,用的时候需要设置一下xml catalog,使用新的spring-mvc-3.0.xsd
2.自动注入日期格式转换错误问题,解决办法:定制一个WebBindingInitialize,注册一个自定义的属性编辑器
1.静态资源无法访问,解决办法用:mvc:resources,不过mvc:resources是3.04新增功能,用的时候需要设置一下xml catalog,使用新的spring-mvc-3.0.xsd
<!-- 配置静态资源,直接映射到对应的文件夹,不被DispatcherServlet处理,3.04新增功能,需要重新设置spring-mvc-3.0.xsd --> <mvc:resources mapping="/img/**" location="/img/"/> <mvc:resources mapping="/js/**" location="/js/"/> <mvc:resources mapping="/css/**" location="/css/"/>
2.自动注入日期格式转换错误问题,解决办法:定制一个WebBindingInitialize,注册一个自定义的属性编辑器
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="cacheSeconds" value="0" /> <property name="webBindingInitializer"> <bean class="com.fsj.spring.util.MyWebBinding" /> </property> </bean>
package com.fsj.spring.util; import java.util.Date; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.support.WebBindingInitializer; import org.springframework.web.context.request.WebRequest; public class MyWebBinding implements WebBindingInitializer { public void initBinder(WebDataBinder binder, WebRequest request) { //1. 使用spring自带的CustomDateEditor //SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); //binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); //2. 自定义的PropertyEditorSupport binder.registerCustomEditor(Date.class, new DateConvertEditor()); } }
package com.fsj.spring.util; import java.beans.PropertyEditorSupport; import java.text.ParseException; import java.text.SimpleDateFormat; import org.springframework.util.StringUtils; public class DateConvertEditor extends PropertyEditorSupport { private SimpleDateFormat datetimeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); public void setAsText(String text) throws IllegalArgumentException { if (StringUtils.hasText(text)) { try { if (text.indexOf(":") == -1 && text.length() == 10) { setValue(this.dateFormat.parse(text)); } else if (text.indexOf(":") > 0 && text.length() == 19) { setValue(this.datetimeFormat.parse(text)); }else{ throw new IllegalArgumentException("Could not parse date, date format is error "); } } catch (ParseException ex) { IllegalArgumentException iae = new IllegalArgumentException("Could not parse date: " + ex.getMessage()); iae.initCause(ex); throw iae; } } else { setValue(null); } } }
发表评论
-
Spring3 MVC + jQuery easyUI 做的ajax版本用户管理
2011-06-12 18:02 20240上周写了篇基于spring3.0.5 mvc 简单用户管理实例 ... -
spring事务管理
2009-11-27 09:30 1259有声明式事务管理和编程式事务管理,一般用声明式事务管理:结合d ... -
AOP
2009-11-27 09:17 1495spring要实现aop需要:aspectjweaver.ja ... -
JDK动态代理和cglib代理对比
2009-11-27 08:59 17581.JDK动态代理:所要代理的类必须实现了接口。 pu ...
相关推荐
总结,本实例详细介绍了如何使用 Spring MVC 3.0.5、Spring 3.0.5 和 MyBatis 3.0.4 进行全注解开发,涵盖了开发环境配置、Maven 的使用、SSM 整合以及如何在 Eclipse 和 MyEclipse 中集成 Maven。这个教程对于希望...
【Spring MVC 3.0.5 + Spring 3.0.5 + MyBatis3.0.4 全注解实例详解】 Spring MVC 3.0.5 是Spring框架的一个重要版本,它引入了对RESTful风格的支持,使得构建Web应用更加灵活。REST(Representational State ...
在本教程中,我们将深入探讨如何使用Spring、Spring MVC 3.0.5以及MyBatis 3.0.4这三个流行的Java框架构建一个全注解的Web应用程序。这个实例详解将帮助开发者理解如何有效地集成这三个组件,实现高效的数据访问和...
2. **spring-beans.jar**:这个模块主要处理Bean的定义和配置,提供了BeanDefinition和BeanFactory接口,用于解析XML或注解配置,创建和管理Bean实例。 3. **spring-context.jar**:在核心和Bean模块之上,提供了更...
在Spring Security 3.0.5版本中,它提供了许多关键的安全特性,包括用户认证、权限控制、CSRF防护、会话管理等。这个版本是Spring Security发展历史上的一个重要里程碑,它在前一个版本的基础上进行了优化和增强,...
Spring MVC 是一个基于 Java 的轻量级 Web 开发框架,它是 Spring 框架的一部分,主要用于构建 MVC(Model-View-Controller)模式的 Web 应用程序。在本压缩包 "springMVC3.0.5常用的所有jar包.zip" 中,包含了一...
4. **基于Spring 3.0.5的简单用户管理实例** - 这个文档可能提供了一个使用Spring MVC实现用户管理功能的实际案例,涉及到用户注册、登录、权限控制等常见功能。 5. **Spring MVC 3.x annotated controller的几点...
Struts2.2.3、Spring3.0.5和Hibernate3.6.5是Java Web开发中的三个关键框架,它们常被一起使用以构建高效、模块化的应用程序。本实例中,这些框架与SQL Server数据库进行了整合,为开发者提供了一个完整的后端解决...
《Spring框架3.0.5参考指南》是Java开发者的重要参考资料,它详尽地阐述了Spring框架3.0.5版本的各项特性和使用方法。Spring Framework作为Java领域最流行的轻量级框架之一,以其模块化设计、依赖注入、面向切面编程...
2. **Spring与Struts的集成**:使用Spring的Struts插件,将Action类的实例交给Spring容器管理,通过`<bean>`标签定义Action类并设置scope为prototype,保证每次请求都创建新的Action实例。 3. **Spring与Mybatis的...
在这个“Spring MVC Helloworld实例”中,我们将会探讨如何利用Spring MVC 3.0.5版本创建一个简单的Hello World应用程序。这个实例包括了所有必要的jar包,使开发者能够快速地开始他们的开发工作。 首先,了解...
SSH整合完成后,开发人员可以通过Struts 2处理用户请求,Spring负责管理对象和事务,而Hibernate则完成数据的持久化。这种三层架构使得开发者可以更专注地处理各自领域的任务,提升开发效率,同时也为项目的维护和...
1. **BeanFactory**:Spring的核心组件,负责实例化、配置和管理Bean。通过XML配置文件或注解,可以声明Bean及其依赖关系。 2. **ApplicationContext**:扩展了BeanFactory,提供了更多的企业级服务,如消息来源、...
在本文中,我们将深入探讨如何在Spring 3.0中整合MVC框架与RESTful服务,并结合Maven构建项目。RESTful(Representational State Transfer)是一种软件架构风格,用于设计网络应用程序,尤其适用于Web服务。Spring ...
在Web层,Spring MVC是Spring Framework的重要组成部分,它为构建基于Servlet的Web应用提供了模型-视图-控制器(MVC)架构。3.0.5版本中,Spring MVC引入了更多用于处理HTTP请求的新特性,如`@RequestMapping`注解,...
工程示例通常会涵盖这些知识点的实际应用,例如创建简单的 MVC 应用、配置和使用 DAO、实现事务管理、使用 AOP 创建切面等。通过分析和运行这些示例,你可以深入理解 Spring 如何在实际项目中发挥作用,从而提升你的...
本项目是关于"activiti+spring+spring Mvc+mybatis+maven"的整合,旨在创建一个基于Activiti工作流引擎、Spring、Spring MVC、MyBatis以及Maven的开发环境。下面将详细介绍这些技术及其整合过程。 首先,`activiti`...