之前讲的内容已经或多或少和整合挂上钩了,当然,之前的内容就不过多的重复。现在在把这个钩真正的挂上。废话不多说。GO!
struts.xml的配置:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<!-- 把Struts2交给Spring管理 -->
<constant name="struts.objectFactory" value="spring"></constant>//必须的
<package name="xxx" extends="struts-default" namespace="">
<action name="LoginAc" class="bean的id">//这里的class不是全路径,只是Spring的Bean组件而已了。例如有个Bean的id为adminLogin,则class="adminLogin"。
<result name="success">/index.jsp</result>
</action>
</package>
</struts>
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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<context:component-scan base-package="com.lrl"></context:component-scan>
<!--数据源的定义-->//数据源需commons-pool.jar、commons-dbcp.jar
<bean id="bbsDateSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver">
</property>
<property name="url" value="jdbc:mysql://localhost:3306/bbspro">
</property>
<property name="username" value="root"></property>
<property name="password" value="123"></property>
</bean>
<!--sessionFactory的定义-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="bbsDateSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="packagesToScan">
<value>com.bbs.entity</value>//这里写Entity的包路径,也就是实体类的包路径
</property>
</bean>
<bean id="testDao" class="com.junit.test.TestDao">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
</beans>
之前用的是Annotation的Entity,代码如上,下面的代码可以配置使用xxx.hbm.xml的SessionFactory。
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="mySqlDateSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/lrl/entity/User.hbm.xml</value>//这里是xml
</list>
</property>
</bean>
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">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
//字符编码
<filter>
<filter-name>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>
</filter>
<filter-mapping>
<filter-name>encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
基本配置就如此而已。如果用MyEclipse开发。把JavaEE5.0的jar拷出,导入lib里。避免部分冲突。详情本博客的其他文章。。
总结:
(1)主要开发过程:applicationContext.xml+struts.xml+web.xml
(2)spring管理Hibernate,那么hibernate.cfg.xml就不需要了,在applicationContext配置数据源等信息即可
分享到:
相关推荐
以下是SSH2整合的详细步骤和关键配置: 1. **环境准备**: - 首先确保已经安装了JDK,并设置了相应的环境变量。 - 下载并导入所需的库:Spring、Struts2、Hibernate的jar包,以及相关的依赖如数据库驱动。 2. **...
ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ssh框架整合配置文件 ...
SSH2整合框架是Java开发中常用的一种高效、稳定且可扩展的Web应用程序开发架构,它由Struts2、Spring和Hibernate三个开源框架组合而成。这三个框架各司其职,共同构建了一个强大的MVC(Model-View-Controller)设计...
本资源提供的是SSH整合的原代码,涵盖了通过注解和XML配置两种方式进行整合的方法,并且已经过测试,确保其可行性和原创性。以下是关于SSH整合及这两种配置方式的详细知识: 1. **Struts框架**:Struts是一个基于...
总的来说,SSH2整合全注解实例展示了如何在Java Web开发中利用注解简化配置,提高开发效率,同时也体现了三大框架的协同工作,实现了模型的业务逻辑、控制流的管理和数据访问的自动化。这个实例对于学习和理解SSH2...
在这个主题下,我们将深入探讨SSH整合涉及的主要配置文件及其作用。 1. **ssh配置文件**: - `sshd_config`: 这是SSH服务器的主要配置文件,位于`/etc/ssh/sshd_config`(在Unix/Linux系统中)。它定义了服务器的...
总的来说,SSH2整合是一个涉及多个层面的过程,包括环境配置、库文件管理、代码编写和配置文件设定。熟练掌握这一过程对于Java开发者来说至关重要,因为它能够帮助构建高效、稳定的企业级应用。
SSH框架整合是Java Web开发中常见的一种技术栈组合,它由Spring、Struts2和Hibernate三个框架构成。这个"SSH框架整合jar包"是开发者为了方便项目构建,避免手动逐个添加和配置这三个框架所需的库文件而制作的集合。...
在SSH整合中,我们需要在Spring配置文件中声明Struts2的Action、Hibernate的数据源、SessionFactory以及Service层组件。同时,使用Spring的AOP功能实现事务控制,通过Struts2的插件连接Struts2和Spring,使Action...
SSH2整合指的是Spring、Struts2和Hibernate这三个开源框架的集成,这在Java Web开发中是一种常见的技术栈。本文将详细介绍SSH2整合的最新版本,包括Spring 3.2、Hibernate 4.2和Struts2.3.4的特性以及它们如何协同...
SSH整合在JavaWeb开发中是一项重要的...然而,理解和配置SSH的每个组件及其相互作用是提高开发效率和优化应用性能的关键。在项目开发过程中,根据具体需求逐步完善这些配置文件,可以构建出高效、可维护的JavaWeb应用。
6. **学习资源**:"mvn_ssh_01"可能包含的是一个基于Maven构建的SSH项目实例,其中可能包括了配置文件、源代码、测试用例等,是学习SSH整合的好材料。通过分析这个项目,可以更直观地了解SSH如何协同工作,以及如何...
SSH2整合源码详解 SSH2是Spring、Struts2和Hibernate3三个开源框架的集成,通常用于构建大型的企业级Web应用。这三个框架各司其职,Spring负责管理应用程序的bean,提供AOP(面向切面编程)和IoC(控制反转);...
SSH2整合实现CRUD是指在Java Web开发中,将Struts2、Spring和Hibernate这三个开源框架集成起来,用于实现创建(Create)、读取(Read)、更新(Update)和删除(Delete)等基本数据操作。SSH2是Struts2、Spring和...
学习SSH整合,首先需要理解每个框架的基本概念和工作原理,然后学习如何配置它们,例如Struts的struts-config.xml、Spring的applicationContext.xml以及Hibernate的hibernate.cfg.xml和映射文件。接着,实践创建简单...
SSH2整合指的是将Struts2、Spring和Hibernate这三个开源框架集成在一起,以便构建高效、松耦合的企业级Java Web应用程序。SSH2整合是Java开发中常见的技术栈,它提供了MVC(模型-视图-控制器)架构、依赖注入以及...
整合SSH框架与Redis,主要是为了让SSH应用能够利用Redis的高速缓存能力,提升数据读取速度,减轻数据库的压力。以下是整合的步骤和关键知识点: 1. **相关Jar文件**:为了实现SSH与Redis的整合,需要引入Redis...
SSH2整合配置文档和源码主要涉及的是Spring、Struts2和Hibernate这三大框架的集成应用,这在Java Web开发中是非常常见的一种架构模式。SSH2整合提供了高效、灵活的后端开发解决方案,使得开发者可以方便地管理业务...
2. **配置SSH连接参数**:创建SSH2连接时,需要设置主机名、端口号、用户名、密码或私钥文件路径等信息。 3. **建立连接**:使用libssh2提供的API建立与远程服务器的连接,进行身份验证。可以使用公钥/私钥对进行...
在提供的压缩包中,`ssh1与ssh2整合说明.doc`很可能是关于整合步骤和配置细节的文档,而`ssh`和`ssh1`可能是项目的源代码或者示例工程,包含了具体实现的细节。 学习和理解SSH1和SSH2的整合,不仅可以提升对MVC框架...