一、创建web工程,搭建Struts框架开发环境:

这里只导入了项目中所需要的重要的jar包,以后根据业务要求继续导入相关的包。
  1. 步骤1::导入struts框架所需的jar包
  2. 步骤2:在web.xml中配置struts2.0主过滤器
  3. 步骤3:导入struts.xml配置文件

web.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  6. <!--  配置Struts2的主过滤器 -->
  7. <filter>
  8. <filter-name>struts2</filter-name>
  9. <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  10. </filter>
  11. <filter-mapping>
  12. <filter-name>struts2</filter-name>
  13. <url-pattern>/*</url-pattern>
  14. </filter-mapping>
  15. <welcome-file-list>
  16. <welcome-file>index.jsp</welcome-file>
  17. </welcome-file-list>
  18. </web-app>
 

struts.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE struts PUBLIC
  3. "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
  4. "http://struts.apache.org/dtds/struts-2.3.dtd">
  5. <struts>
  6. <!-- 配置为开发模式 -->
  7. <constant name="struts.devMode" value="true" />
  8. <!-- 配置扩展名为action -->
  9. <constant name="struts.action.extension" value="action"/>
  10. <package name="default" namespace="/" extends="struts-default">
  11. </package>
  12. </struts>
 

二、搭建Hibernate开发环境:

创建数据库:
这里只导入了项目中所需要的重要的jar包,以后根据业务要求继续导入相关的包。
工程目录:
hibernate.cfg.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <!-- 配置Hibernate:属性配置参考  Hibernate发型包\project\etc\hibernate.properties -->
  8. <!-- JDBC的基本链接 -->
  9. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.username">root</property>
  11. <property name="connection.password">root</property>
  12. <property name="connection.url">jdbc:mysql://localhost:3306/xbmuoa</property>
  13. <!-- 配置数据库方言 -->
  14. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  15. <!-- 根据映射产生表结构的类型:
  16. create-drop:木有表结构创建,下次启动时删除重新创建。适合学习阶段
  17. create:只做创建
  18. update:探测表结构够的变化,对于数据库没有的,进行更新操作。适合学习阶段
  19. validate:对比与数据库的结构
  20. -->
  21. <property name="hibernate.hbm2ddl.auto">update</property>
  22. <!-- 显示sql语句及格式:开发调试阶段非常有用 -->
  23. <property name="hibernate.show_sql">true</property>
  24. <property name="hibernate.format_sql">true</property>
  25. <!-- 告知映射文件 -->
  26. </session-factory>
  27. </hibernate-configuration>
 

Person.hbm.xml(暂时性先写个映射文件的模板)

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
  5. <hibernate-mapping package="cn.xbmu.oa.domain">
  6. </hibernate-mapping>

三、搭建Spring开发环境:

这里只导入了项目中所需要的重要的jar包,以后根据业务要求继续导入相关的包。
applicationContext.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:tx="http://www.springframework.org/schema/tx"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
  7. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
  8. <!-- 自动扫描与装配bean -->
  9. <context:component-scan base-package="cn.xbmu.oa"></context:component-scan>
  10. </beans>
 

以上已经将Struts、Spring、Hibernate开发所需要的jar包及其配置文件已经配置到web工程中了。

接下来,我们两两整合在一起。

四、Spring与Hibernate整合:

让Spring来管理SessionFactory和事务。
工程目录:
applicationContext.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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"
  3. xmlns:tx="http://www.springframework.org/schema/tx"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
  5. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
  6. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
  7. <!-- 自动扫描与装配bean -->
  8. <context:component-scan base-package="cn.xbmu.oa"></context:component-scan>
  9. <!-- 加载外部的properties配置文件 -->
  10. <context:property-placeholder location="classpath:jdbc.properties" />
  11. <!-- 配置数据库连接池(c3p0) -->
  12. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  13. <!-- 基本信息 -->
  14. <property name="jdbcUrl" value="${jdbcUrl}"></property>
  15. <property name="driverClass" value="${driverClass}"></property>
  16. <property name="user" value="${username}"></property>
  17. <property name="password" value="${password}"></property>
  18. <!-- 其他配置 -->
  19. <!--初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->
  20. <property name="initialPoolSize" value="3"></property>
  21. <!--连接池中保留的最小连接数。Default: 3 -->
  22. <property name="minPoolSize" value="3"></property>
  23. <!--连接池中保留的最大连接数。Default: 15 -->
  24. <property name="maxPoolSize" value="5"></property>
  25. <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
  26. <property name="acquireIncrement" value="3"></property>
  27. <!-- 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default: 0 -->
  28. <property name="maxStatements" value="8"></property>
  29. <!-- maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 -->
  30. <property name="maxStatementsPerConnection" value="5"></property>
  31. <!--最大空闲时间,1800秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
  32. <property name="maxIdleTime" value="1800"></property>
  33. </bean>
  34. <!-- 配置SessionFactory -->
  35. <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  36. <property name="dataSource" ref="dataSource"></property>
  37. <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
  38. </bean>
  39. <!-- 配置声明式的事务管理(采用基于注解的方式) -->
  40. <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  41. <property name="sessionFactory" ref="sessionFactory"></property>
  42. </bean>
  43. <tx:annotation-driven transaction-manager="transactionManager" />
  44. </beans>

jdbc.properties

  1. jdbcUrl     = jdbc:mysql:///xbmuoa
  2. driverClass = com.mysql.jdbc.Driver
  3. username    = root
  4. password    = root

SpringTest.java

  1. package cn.xbmu.oa.test;
  2. import org.hibernate.SessionFactory;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class SpringTest {
  7. private ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
  8. //测试SessionFactory
  9. @Test
  10. public void testSessionFactory(){
  11. SessionFactory sessionFactory = (SessionFactory) ac.getBean("sessionFactory");
  12. System.out.println(sessionFactory);
  13. }
  14. }

使用Junit测试,结果:

启动tomcat没有报错,说明以上环境的搭建都完全正确,并进行测试,也没有报错。
User.java
  1. package cn.xbmu.oa.domain;
  2. public class User {
  3. private Long id;
  4. private String name;
  5. public Long getId() {
  6. return id;
  7. }
  8. public void setId(Long id) {
  9. this.id = id;
  10. }
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. }

User.hbm.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC
  3. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
  5. <hibernate-mapping package="cn.xbmu.oa.domain">
  6. <class name="User">
  7. <id name="id">
  8. <generator class="native"/>
  9. </id>
  10. <property name="name"/>
  11. </class>
  12. </hibernate-mapping>
记得在hibernate.cfg.xml文件中引入映射文件。
 
TestService.java
  1. package cn.xbmu.oa.test;
  2. import javax.annotation.Resource;
  3. import org.hibernate.SessionFactory;
  4. import org.hibernate.classic.Session;
  5. import org.springframework.stereotype.Service;
  6. import org.springframework.transaction.annotation.Transactional;
  7. import cn.xbmu.oa.domain.User;
  8. @Service("testService")
  9. public class TestService {
  10. @Resource
  11. private SessionFactory sessionFactory;
  12. @Transactional
  13. public void saveTwoUser(){
  14. Session currentSession = sessionFactory.getCurrentSession();
  15. currentSession.save(new User());
  16. int i = 1 / 0;//这里会抛出异常
  17. currentSession.save(new User());
  18. }
  19. }

SpringTest.java

  1. package cn.xbmu.oa.test;
  2. import org.hibernate.SessionFactory;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class SpringTest {
  7. private ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
  8. //测试SessionFactory
  9. @Test
  10. public void testSessionFactory(){
  11. SessionFactory sessionFactory = (SessionFactory) ac.getBean("sessionFactory");
  12. System.out.println(sessionFactory);
  13. }
  14. //测试事务
  15. @Test
  16. public void testTransaction(){
  17. TestService testService = (TestService) ac.getBean("testService");
  18. testService.saveTwoUser();
  19. }
  20. }

测试事务,报错,因为在 int i = 1 / 0这里发生了异常。


查询数据库xbmuoa中的表,没有数据
我们注释掉  int i = 1 / 0;这句代码,重新测试,成功。
查询user表,里面已经有了保存的数据
我们,继续打开抛异常的语句,再测试;再注释抛异常的代码,再测试。查看表中的数据,发现了事务回滚了。
到此为止,我们顺利的将Spring与Hibernate整合在一起了。并测试了SessionFactory与事务,都正常。

五、Spring与Struts整合:

为了说明白,我们在整合之前写个Action,整合之后写个Action,看看他们之间的区别:

整合之前:

TestAction.java
  1. package cn.xbmu.oa.test;
  2. import com.opensymphony.xwork2.ActionSupport;
  3. public class TestAction extends ActionSupport {
  4. @Override
  5. public String execute() throws Exception {
  6. System.out.println("---------->TestAction execute()");
  7. return "success";
  8. }
  9. }

struts.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE struts PUBLIC
  3. "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
  4. "http://struts.apache.org/dtds/struts-2.3.dtd">
  5. <struts>
  6. <!-- 配置为开发模式 -->
  7. <constant name="struts.devMode" value="true" />
  8. <!-- 配置扩展名为action -->
  9. <constant name="struts.action.extension" value="action"/>
  10. <package name="default" namespace="/" extends="struts-default">
  11. <!-- 测试用的action -->
  12. <action name="test" class="cn.xbmu.oa.test.TestAction">
  13. <result name="success">/test.jsp</result>
  14. </action>
  15. </package>
  16. </struts>

test.jsp

  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  3. <html>
  4. <head>
  5. </head>
  6. <body>
  7. Struts2.0添加成功<br/>
  8. </body>
  9. </html>

运行:

整合之后:

导入jar包,已经完成了整合
TestAction.java
  1. package cn.xbmu.oa.test;
  2. import org.springframework.context.annotation.Scope;
  3. import org.springframework.stereotype.Controller;
  4. import com.opensymphony.xwork2.ActionSupport;
  5. @Controller
  6. @Scope("prototype")
  7. public class TestAction extends ActionSupport {
  8. @Override
  9. public String execute() throws Exception {
  10. System.out.println("---------->TestAction execute()");
  11. return "success";
  12. }
  13. }

struts.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE struts PUBLIC
  3. "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
  4. "http://struts.apache.org/dtds/struts-2.3.dtd">
  5. <struts>
  6. <!-- 配置为开发模式 -->
  7. <constant name="struts.devMode" value="true" />
  8. <!-- 配置扩展名为action -->
  9. <constant name="struts.action.extension" value="action"/>
  10. <package name="default" namespace="/" extends="struts-default">
  11. <!-- 测试用的action,当与Spring整合后,class属性写的就是bean的名称-->
  12. <action name="test" class="testAction">
  13. <result name="success">/test.jsp</result>
  14. </action>
  15. </package>
  16. </struts>

在浏览器上运行:http://localhost:8080/xbmuoa/test.action

发现,在控制台上报错,信息如下:
  1. 严重: ********** FATAL ERROR STARTING UP STRUTS-SPRING INTEGRATION **********
  2. Looks like the Spring listener was not configured for your web app!
  3. Nothing will work until WebApplicationContextUtils returns a valid ApplicationContext.
  4. You might need to add the following to web.xml:
  5. <listener>
  6. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  7. </listener>
  8. 四月 03, 2016 9:48:27 下午 com.opensymphony.xwork2.util.logging.commons.CommonsLogger error
  9. 严重: Dispatcher initialization failed
  10. java.lang.NullPointerException
  11. at com.opensymphony.xwork2.spring.SpringObjectFactory.getClassInstance(SpringObjectFactory.java:209)
  12. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.verifyResultType(XmlConfigurationProvider.java:519)
  13. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addResultTypes(XmlConfigurationProvider.java:490)
  14. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addPackage(XmlConfigurationProvider.java:446)
  15. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.loadPackages(XmlConfigurationProvider.java:264)
  16. at org.apache.struts2.config.StrutsXmlConfigurationProvider.loadPackages(StrutsXmlConfigurationProvider.java:111)
  17. at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:193)
  18. at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:55)
  19. at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:374)
  20. at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:418)
  21. at org.apache.struts2.dispatcher.ng.InitOperations.initDispatcher(InitOperations.java:69)
  22. at org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.init(StrutsPrepareAndExecuteFilter.java:51)
  23. at org.apache.catalina.core.ApplicationFilterConfig.initFilter(ApplicationFilterConfig.java:279)
  24. at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:260)
  25. at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:105)
  26. at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4854)
  27. at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5542)
  28. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
  29. at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)
  30. at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)
  31. at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:649)
  32. at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:1245)
  33. at org.apache.catalina.startup.HostConfig$DeployDirectory.run(HostConfig.java:1895)
  34. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
  35. at java.util.concurrent.FutureTask.run(FutureTask.java:262)
  36. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
  37. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
  38. at java.lang.Thread.run(Thread.java:724)
  39. 四月 03, 2016 9:48:27 下午 org.apache.catalina.core.StandardContext filterStart
  40. 严重: Exception starting filter struts2
  41. Class: com.opensymphony.xwork2.spring.SpringObjectFactory
  42. File: SpringObjectFactory.java
  43. Method: getClassInstance
  44. Line: 209 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:209:-1
  45. at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:431)
  46. at org.apache.struts2.dispatcher.ng.InitOperations.initDispatcher(InitOperations.java:69)
  47. at org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter.init(StrutsPrepareAndExecuteFilter.java:51)
  48. at org.apache.catalina.core.ApplicationFilterConfig.initFilter(ApplicationFilterConfig.java:279)
  49. at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:260)
  50. at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:105)
  51. at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4854)
  52. at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5542)
  53. at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
  54. at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)
  55. at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)
  56. at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:649)
  57. at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:1245)
  58. at org.apache.catalina.startup.HostConfig$DeployDirectory.run(HostConfig.java:1895)
  59. at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
  60. at java.util.concurrent.FutureTask.run(FutureTask.java:262)
  61. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
  62. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
  63. at java.lang.Thread.run(Thread.java:724)
  64. Caused by: java.lang.NullPointerException
  65. at com.opensymphony.xwork2.spring.SpringObjectFactory.getClassInstance(SpringObjectFactory.java:209)
  66. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.verifyResultType(XmlConfigurationProvider.java:519)
  67. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addResultTypes(XmlConfigurationProvider.java:490)
  68. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.addPackage(XmlConfigurationProvider.java:446)
  69. at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.loadPackages(XmlConfigurationProvider.java:264)
  70. at org.apache.struts2.config.StrutsXmlConfigurationProvider.loadPackages(StrutsXmlConfigurationProvider.java:111)
  71. at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:193)
  72. at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:55)
  73. at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:374)
  74. at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:418)
  75. ... 18 more

意思就是,没有和web工程整合,没有一个全局的工厂容器对象。

在web.xml中配置信息如下:
web.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  6. <!-- 配置Spring的监听器,用于初始化ApplicationContext对象 -->
  7. <listener>
  8. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  9. </listener>
  10. <context-param>
  11. <param-name>contextConfigLocation</param-name>
  12. <param-value>classpath:applicationContext*.xml</param-value>
  13. </context-param>
  14. <!--  配置Struts2的主过滤器 -->
  15. <filter>
  16. <filter-name>struts2</filter-name>
  17. <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  18. </filter>
  19. <filter-mapping>
  20. <filter-name>struts2</filter-name>
  21. <url-pattern>/*</url-pattern>
  22. </filter-mapping>
  23. <welcome-file-list>
  24. <welcome-file>index.jsp</welcome-file>
  25. </welcome-file-list>
  26. </web-app>

TestAction.java

  1. package cn.xbmu.oa.test;
  2. import javax.annotation.Resource;
  3. import org.springframework.context.annotation.Scope;
  4. import org.springframework.stereotype.Controller;
  5. import com.opensymphony.xwork2.ActionSupport;
  6. @Controller
  7. @Scope("prototype")
  8. public class TestAction extends ActionSupport {
  9. @Resource
  10. private TestService testService;
  11. @Override
  12. public String execute() throws Exception {
  13. System.out.println("---------->TestAction execute()");
  14. testService.saveTwoUser();
  15. return "success";
  16. }
  17. }

在浏览器中运行,报错,是因为在 int i = 1 / 0出抛出了异常


注释掉这句抛异常的语句,继续运行,成功。
 

struts2.3.20+spring4.0.2+hibernate4.3.4框架整合的更多相关文章

  1. struts2.3.24 + spring4.1.6 + hibernate4.3.11+ mysql5.5.25开发环境搭建及相关说明

    一.目标 1.搭建传统的ssh开发环境,并成功运行(插入.查询) 2.了解c3p0连接池相关配置 3.了解验证hibernate的二级缓存,并验证 4.了解spring事物配置,并验证 5.了解spr ...

  2. 【SSH】---【Struts2、Hibernate5、Spring4集成开发】【SSH框架整合笔记】

    Struts2.Hibernate5.Spring4集成开发步骤: 一.导入Jar包(基本的大致有41个,根据实际项目的需求自己添加) antlr-2.7.7.jar aopalliance.jar ...

  3. 最新版本的Struts2+Spring4+Hibernate4三大框架整合(截止2014-10-15,提供源码下载)

    一. 项目名称:S2316S411H436 项目原型:Struts2.3.16 + Spring4.1.1 + Hibernate4.3.6 + Quartz2.2.1 源代码下载地址: 基本版:ht ...

  4. spring mvc4.1.6 + spring4.1.6 + hibernate4.3.11 + mysql5.5.25 开发环境搭建及相关说明

    一.准备工作 开始之前,先参考上一篇: struts2.3.24 + spring4.1.6 + hibernate4.3.11 + mysql5.5.25 开发环境搭建及相关说明 struts2.3 ...

  5. [转]Struts2.3.16.1+Hibernate4.3.4+Spring4.0.2 框架整合

    原文地址:http://blog.csdn.net/ycb1689/article/details/22928519 最新版Struts2+Hibernate+Spring整合 目前为止三大框架最新版 ...

  6. Struts2.3.16.1+Hibernate4.3.4+Spring4.0.2 框架整合(转)

    原文  http://blog.csdn.net/songanling/article/details/22454973 最新版Struts2+Hibernate+Spring整合     目前为止三 ...

  7. struts2.3.16.1+hibernate4.3.4+spring4.0.2

    把之前的老项目用新的改了 发现新的有点很方便啊 Struts2+Hibernate+Spring整合     用的是      struts2.3.16.1      hibernate4.3.4   ...

  8. (转)Spring4.2.5+Hibernate4.3.11+Struts2.3.24整合开发

    http://blog.csdn.net/yerenyuan_pku/article/details/52902851 前面我们已经学会了Spring4.2.5+Hibernate4.3.11+Str ...

  9. 【Spring实战-2】Spring4.0.4整合Hibernate4.3.6

    作者:ssslinppp      源程序下载:http://download.csdn.net/detail/ssslinppp/8751185  1. 摘要 本文主要讲解如何在Spring4.0. ...

随机推荐

  1. mysql8无法用navicat连接(mysql8加密方式的坑)

    关键词:mysql8无法用navicat连接,navicat无法连接mysql8,mysql8,mysql8的加密方式 [1]mysql8 的坑 密码加密规则 在MySQL 8.0.以上版本中,cac ...

  2. numpy数组的索引和切片

    numpy数组的索引和切片 基本切片操作 >>> import numpy as np >>> arr=np.arange(10) >>> arr ...

  3. [HAOI2018]苹果树题解

    题目链接 大意:不解释 思路: 首先方案数共有n!种,第1个点只有1种选择,第2个点2种选择,生成2个选择的同时消耗一个,第3个点则有3种选择,依次类推共有n!种方案,由于最后答案*n!,故输出的实际 ...

  4. Kali安装在U盘+使用aircrack-ng套件

    因为: Kali Linux 自带aircrack-ng 虚拟机VMware不能用笔记本内置网卡,需要另外买一个无线网卡,然而并不想买 不想给笔记本重装Kali Linux系统 有闲置的32GU盘 所 ...

  5. Thymeleaf模板中变量报红

    在上顶部添加 <!--suppress ThymeleafVariablesResolveInspection --> 或者 <!--suppress ALL --> 都可以解 ...

  6. 关于js计算非等宽字体宽度的方法

    准备一个容器 首先在body外插入一个absolute的容器避免重绘: const svgWidthTestContainer = document.createElement('svg'); svg ...

  7. qt treeview过滤

    一,不多说直接上代码 QSortFilterProxyModel可实现过滤排序.但是如果直接使用只能对于父项进行过滤 这里需要继承 头文件 #include <QSortFilterProxyM ...

  8. MySQL 7种 JOIN连表方法

    规定:左边的圆代表表 a,右边的代表 b. JOIN 关键字可以在两表之间选中任意部分.] 通过以下代码制造一些数据: delimiter // drop procedure if exists pr ...

  9. docker inspect命令查看镜像详细信息

    使用 inspect 命令查看镜像详细信息,包括制作者.适应架构.各层的数字摘要等. # docker inspect --help Usage: docker inspect [OPTIONS] N ...

  10. AIX中设备管理

    1.AIX系统中的设备概述 逻辑设备文件     #ls   -l  /dev   空设备文件 #/dev/null   设备的状态:undefined.defined.available.stopp ...