`
随便小屋
  • 浏览: 106104 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

struts2.3.14+spring3.1.1+hibernate4.1.0框架搭建新版SSH(中)

    博客分类:
  • SSH
阅读更多

在上一篇文章中主要说了一下需要导入的jar包,此篇文章来讲解具体的配置。

三、具体的配置文件的配置

1、首先配置一下web.xml。应该是个很主要的方面

a、欢迎界面的配置

 <!-- 配置默认欢迎界面 -->
 <welcome-file-list>
  <welcome-file>index.html</welcome-file>
 </welcome-file-list>

b、log4j文件位置的配置,以前可能都没配置过这个东西,因为默认情况下log4j.properties文件需要放在src目录下,即所谓的classpath:目录。下面还有个配置具体的意思不是很懂,一下配置一下就行了。还有个spring对log4j的支持。具体的配置如下所示

 

 

 <context-param>
  <param-name>log4jConfigLocation</param-name>
  <param-value>classpath:/edu/qdlms/logic/resources/log4j.properties</param-value>
 </context-param>
  
 <context-param>
  <param-name>log4jRefreshInterval</param-name>
  <param-value>60000</param-value>
 </context-param>
 
 <!-- 为了防止出现log4j异常 -->
 <listener> 
 <listener-class> 
 org.springframework.web.util.Log4jConfigListener 
 </listener-class> 
 </listener>> 

c、spring的配置,spring默认的文件路径是src目录下,看着有点不舒服,所以也把他放到resources包中。下面的listener必须配

 

 

 <!-- 配置spring的路径 -->
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:/edu/qdlms/logic/resources/applicationContext-common.xml</param-value>
 </context-param>
 
 <listener>
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>

d、struts的配置

 

	<!-- struts 的配置 -->
	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>

		<init-param>
			<param-name>config</param-name>
			<param-value>struts-default.xml,struts-plugin.xml,classpath:/edu/qdlms/logic/resources/struts.xml</param-value>
		</init-param>
	</filter>

	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>


e、其它错误文件的配置

 

 

	<error-page>  
        <error-code>404</error-code>  
        <location>/page/exception/404.jsp</location>  
    </error-page>  
    <error-page>  
        <error-code>500</error-code>  
        <location>/page/exception/500.jsp</location>  
    </error-page> 


f、这里配置的比较少,下面把整个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>QDLMS</display-name>

	<!-- 配置默认欢迎界面 -->
	<welcome-file-list>
		<welcome-file>index.html</welcome-file>
	</welcome-file-list>

	<context-param>
		<param-name>log4jConfigLocation</param-name>
		<param-value>classpath:/edu/qdlms/logic/resources/log4j.properties</param-value>
	</context-param>
		
	<context-param>
		<param-name>log4jRefreshInterval</param-name>
		<param-value>60000</param-value>
	</context-param>
	
	<!-- 为了防止出现log4j异常 -->
	<listener>  
        <listener-class>  
            org.springframework.web.util.Log4jConfigListener  
        </listener-class>  
    </listener> 

	<!-- 配置spring的路径 -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:/edu/qdlms/logic/resources/applicationContext-common.xml</param-value>
	</context-param>
	
	<listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

	<!-- struts 的配置 -->
	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>

		<init-param>
			<param-name>config</param-name>
			<param-value>struts-default.xml,struts-plugin.xml,classpath:/edu/qdlms/logic/resources/struts.xml</param-value>
		</init-param>
	</filter>

	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<error-page>  
        <error-code>404</error-code>  
        <location>/page/exception/404.jsp</location>  
    </error-page>  
    <error-page>  
        <error-code>500</error-code>  
        <location>/page/exception/500.jsp</location>  
    </error-page> 
</web-app>


2、log4j.properties文件的配置,下面直接贴出代码,具体不懂得参考百度或者谷歌吧。

 

 

### direct log messages to stdout ###
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c:%L - %m%n

### direct messages to file hibernate.log ###
#log4j.appender.file=org.apache.log4j.FileAppender
#log4j.appender.file.File=hibernate.log
#log4j.appender.file.layout=org.apache.log4j.PatternLayout
#log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n

### set log levels - for more verbose logging change 'info' to 'debug' ###

log4j.rootLogger=warn, stdout

#log4j.logger.org.hibernate=info
#log4j.logger.org.hibernate=debug

### log HQL query parser activity
#log4j.logger.org.hibernate.hql.ast.AST=debug

### log just the SQL
#log4j.logger.org.hibernate.SQL=debug

### log JDBC bind parameters ###
#log4j.logger.org.hibernate.type=info
#log4j.logger.org.hibernate.type=debug

### log schema export/update ###
log4j.logger.org.hibernate.tool.hbm2ddl=debug

### log HQL parse trees
#log4j.logger.org.hibernate.hql=debug

### log cache activity ###
#log4j.logger.org.hibernate.cache=debug

### log transaction activity
#log4j.logger.org.hibernate.transaction=debug

### log JDBC resource acquisition
#log4j.logger.org.hibernate.jdbc=debug

### enable the following line if you want to track down connection ###
### leakages when using DriverManagerConnectionProvider ###
#log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trace


3、jdbc.properties文件的配置

 

a、hibernate的配置

 

#Hibernate
hibernate.hbm2ddl.auto=update
hibernate.show_sql=true
hibernate.format_sql=true
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
hibernate.cache.provider_class=net.sf.ehcache.hibernate.EhCacheProvider
hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext


b、数据库连接池(c3p0)的配置

 

 

#JDBC
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/qdlmsl
jdbc.username=root
jdbc.password=admin
#C3P0
#Hibernate4 C3P0
jdbc.miniPoolSize = 1
jdbc.maxPoolSize = 20
jdbc.initialPoolSize = 1
jdbc.maxIdleTime = 25000
jdbc.acquireIncrement = 1

jdbc.acquireRetryAttempts = 30
jdbc.acquireRetryDelay = 1000
jdbc.testConnectionOnCheckin = true
jdbc.automaticTestTable = c3p0TestTable
jdbc.idleConnectionTestPeriod = 18000
jdbc.checkoutTimeout=3000


c、整个jdbc.properties文件就不贴出来了

 

3、struts.xml文件就不用配置了,这里是用的时struts的零配置。所以大家就不用那么麻烦的去配置struts的配置文件了。其中我也在官方下载了一个原版的struts.xml的文件,这里没进行配置。struts的零配置并不是说一点都不需要配置,还有一点配置如下所示(全部注释掉了,回头如果有用到的地方,大家可以百度一下)

 

<?xml version="1.0" encoding="UTF-8" ?>
<!--
/*
 * $Id: struts-plugin.xml 722219 2008-12-01 20:41:26Z musachy $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
 <!--    
    <constant name="struts.convention.action.suffix" value="Controller"/>
    <constant name="struts.convention.action.mapAllMatches" value="true"/>
    <constant name="struts.convention.default.parent.package" value="rest-default"/>

    <constant name="struts.convention.package.locators" value="action"/> -->
    
</struts>


4、 下面最重要的配置就是下面applicationContext-common.xml的配置了,一不小心就会出很多的问题

 

a、添加注解的支持,还有配置所需要扫描的文件包

 

	<!-- post-processors for all standard config annotations -->
	<context:annotation-config />

	<!-- Scans within the base package of the application for @Components to 
		configure as beans -->
	<context:component-scan base-package="edu.qdlms.logic.*" />

b、jdbc.properties文件位置的配置

 

 

	<!--  jdbc.properties文件位置的配置 -->	
	<bean
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations"
			value="classpath:/edu/qdlms/logic/resources/jdbc.properties" />
	</bean>

c、c3p0连接池配置

 

 

	<!-- c3p0连接池配置 -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="driverClass" value="${jdbc.driverClass}" />
		<property name="jdbcUrl" value="${jdbc.url}" />
		<property name="user" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
		<property name="minPoolSize" value="${jdbc.miniPoolSize}" />
		<property name="maxPoolSize" value="${jdbc.maxPoolSize}" />
		<property name="initialPoolSize" value="${jdbc.initialPoolSize}" />
		<property name="maxIdleTime" value="${jdbc.maxIdleTime}" />
		<property name="acquireIncrement" value="${jdbc.acquireIncrement}" />

		<property name="acquireRetryAttempts" value="${jdbc.acquireRetryAttempts}" />
		<property name="acquireRetryDelay" value="${jdbc.acquireRetryDelay}" />
		<property name="testConnectionOnCheckin" value="${jdbc.testConnectionOnCheckin}" />
		<property name="automaticTestTable" value="${jdbc.automaticTestTable}" />
		<property name="idleConnectionTestPeriod" value="${jdbc.idleConnectionTestPeriod}" />
		<property name="checkoutTimeout" value="${jdbc.checkoutTimeout}" />
	</bean>

d、配置SessionFactory

 

 

	<!-- 配置SessionFactory,据说这个packagesToScan不能扫描子包 -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="packagesToScan">
			<list>
				<value>edu.qdlms.logic.model</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${hibernate.dialect}</prop>
				<prop key="hibernate.current_session_context_class">${hibernate.current_session_context_class}</prop>
				<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
				<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
				<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
			</props>
		</property>
	</bean>

e、transactionManager的配置

 

 

 <!-- transactionManager -->
	<bean id="transactionManager"
		class="org.springframework.orm.hibernate4.HibernateTransactionManager">
		<property name="sessionFactory">
			<ref local="sessionFactory" />
		</property>
	</bean>

	<!--采用注解来管理Bean -->
	<tx:annotation-driven transaction-manager="transactionManager" />


	<bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <tx:advice id="txAdvice" transaction-manager="txManager">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="create*" propagation="REQUIRED" />
            <tx:method name="insert*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="merge*" propagation="REQUIRED" />
            <tx:method name="del*" propagation="REQUIRED" />
            <tx:method name="remove*" propagation="REQUIRED" />
            <tx:method name="put*" propagation="REQUIRED" />
            <tx:method name="use*" propagation="REQUIRED"/>
            <!--hibernate4必须配置为开启事务 否则 getCurrentSession()获取不到-->
            <tx:method name="get*" propagation="REQUIRED" read-only="true" />
            <tx:method name="count*" propagation="REQUIRED" read-only="true" />
            <tx:method name="find*" propagation="REQUIRED" read-only="true" />
            <tx:method name="list*" propagation="REQUIRED" read-only="true" />
            <tx:method name="*" read-only="true" />
        </tx:attributes>
    </tx:advice>
    <aop:config expose-proxy="true">
        <!-- 只对业务逻辑层实施事务 -->
        <aop:pointcut id="txPointcut" expression="execution(* edu.qdlms.logic..service..*.*(..))" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config> 	 	

f、最后把整个applicationContext-common.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:jee="http://www.springframework.org/schema/jee"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:util="http://www.springframework.org/schema/util"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:tool="http://www.springframework.org/schema/tool" 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.xsd
			http://www.springframework.org/schema/aop
			http://www.springframework.org/schema/aop/spring-aop.xsd
			http://www.springframework.org/schema/context
			http://www.springframework.org/schema/context/spring-context.xsd
           http://www.springframework.org/schema/jee
           http://www.springframework.org/schema/jee/spring-jee.xsd
           http://www.springframework.org/schema/util
           http://www.springframework.org/schema/util/spring-util.xsd
           http://www.springframework.org/schema/tool
           http://www.springframework.org/schema/tool/spring-tool.xsd"
	default-lazy-init="true" default-autowire="byName">

	<!-- post-processors for all standard config annotations -->
	<context:annotation-config />

	<!-- Scans within the base package of the application for @Components to 
		configure as beans -->
	<context:component-scan base-package="edu.qdlms.logic.*" />


	<!-- 配置数据库的信息 -->
	<!--  jdbc.properties文件位置的配置 -->	
	<bean
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations"
			value="classpath:/edu/qdlms/logic/resources/jdbc.properties" />
	</bean>

	<!-- c3p0连接池配置 -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="driverClass" value="${jdbc.driverClass}" />
		<property name="jdbcUrl" value="${jdbc.url}" />
		<property name="user" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
		<property name="minPoolSize" value="${jdbc.miniPoolSize}" />
		<property name="maxPoolSize" value="${jdbc.maxPoolSize}" />
		<property name="initialPoolSize" value="${jdbc.initialPoolSize}" />
		<property name="maxIdleTime" value="${jdbc.maxIdleTime}" />
		<property name="acquireIncrement" value="${jdbc.acquireIncrement}" />

		<property name="acquireRetryAttempts" value="${jdbc.acquireRetryAttempts}" />
		<property name="acquireRetryDelay" value="${jdbc.acquireRetryDelay}" />
		<property name="testConnectionOnCheckin" value="${jdbc.testConnectionOnCheckin}" />
		<property name="automaticTestTable" value="${jdbc.automaticTestTable}" />
		<property name="idleConnectionTestPeriod" value="${jdbc.idleConnectionTestPeriod}" />
		<property name="checkoutTimeout" value="${jdbc.checkoutTimeout}" />
	</bean>


	<!-- 配置SessionFactory,据说这个packagesToScan不能扫描子包 -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="packagesToScan">
			<list>
				<value>edu.qdlms.logic.model</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${hibernate.dialect}</prop>
				<prop key="hibernate.current_session_context_class">${hibernate.current_session_context_class}</prop>
				<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
				<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
				<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
			</props>
		</property>
	</bean>

	<!-- transactionManager -->
	<bean id="transactionManager"
		class="org.springframework.orm.hibernate4.HibernateTransactionManager">
		<property name="sessionFactory">
			<ref local="sessionFactory" />
		</property>
	</bean>

	<!--采用注解来管理Bean -->
	<tx:annotation-driven transaction-manager="transactionManager" />


	<bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <tx:advice id="txAdvice" transaction-manager="txManager">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="create*" propagation="REQUIRED" />
            <tx:method name="insert*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="merge*" propagation="REQUIRED" />
            <tx:method name="del*" propagation="REQUIRED" />
            <tx:method name="remove*" propagation="REQUIRED" />
            <tx:method name="put*" propagation="REQUIRED" />
            <tx:method name="use*" propagation="REQUIRED"/>
            <!--hibernate4必须配置为开启事务 否则 getCurrentSession()获取不到-->
            <tx:method name="get*" propagation="REQUIRED" read-only="true" />
            <tx:method name="count*" propagation="REQUIRED" read-only="true" />
            <tx:method name="find*" propagation="REQUIRED" read-only="true" />
            <tx:method name="list*" propagation="REQUIRED" read-only="true" />
            <tx:method name="*" read-only="true" />
        </tx:attributes>
    </tx:advice>
    <aop:config expose-proxy="true">
        <!-- 只对业务逻辑层实施事务 -->
        <aop:pointcut id="txPointcut" expression="execution(* edu.qdlms.logic..service..*.*(..))" />
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config> 	 	
</beans>



 





 

 

 

分享到:
评论

相关推荐

    struts2.3.14+spring3.1.1+hibernate4.1.0 jar包

    Struts2.3.14、Spring3.1.1和Hibernate4.1.0是三个非常关键的Java开源框架,它们在企业级Web应用开发中有着广泛的应用。这个压缩包文件包含了这三个框架的jar包,是搭建基于SSH(Struts2、Spring、Hibernate)集成...

    版本:struts-2.3.14+spring-2.5.6+hibernate3.6.10

    SSH2框架搭建所需jar包,版本:struts-2.3.14+spring-2.5.6+hibernate3.6.10

    struts2.3.14

    Struts2.3.14 是 Apache Struts 框架的一个特定版本,该框架是用于构建企业级Java web应用程序的开源MVC(Model-View-Controller)框架。Struts2以其灵活性、可扩展性和强大的功能,深受开发者的喜爱。在Struts...

    spring3.2.2+struts2.3.14整合

    spring3.2.2+struts2.3.14整合的一个登录实例。 数据库使用的是ORACLE,如使用其他数据库请自行导入所需JAR包,并修改配置文件datasource.properties。 环境:eclipse+tomcat7.0+JDK1.7+spring3.2.2+struts2.3.14,...

    spring3.2.2+struts2.3.14整合实例

    spring3.2.2+struts2.3.14整合的一个登录实例。 数据库使用的是ORACLE,如使用其他数据库请自行导入所需JAR包,并修改配置文件datasource.properties。 环境:eclipse+tomcat7.0+JDK1.7+spring3.2.2+struts2.3.14,...

    struts2+spring3+mybatis3整合的jar包

    Struts2、Spring3和MyBatis3是Java Web开发中的三大主流框架,它们的整合是构建企业级应用的常用方式。这篇博文的资源提供了一个整合这三个框架的jar包,帮助开发者快速搭建基于这些技术的项目环境。下面将分别介绍...

    struts2.3.14帮助文档

    struts2.3.14最新帮助文档,带索引,可以直接搜索目录,完全人工制作,struts是三大开源框架之一

    struts2.3.14全支持包

    在Struts2.3.14中,Spring支持包是一个重要的组成部分,它允许开发者利用Spring框架的特性,如依赖注入(DI)、面向切面编程(AOP)以及服务管理。通过Struts2与Spring的集成,可以在Struts2的Action类中注入Spring...

    新版SSH框架

    这个新版SSH框架基于Struts2.3.14、Spring3.1.1和Hibernate,提供了一个高效、灵活且可扩展的开发环境。 **Struts2** 是一个开源的Java Web MVC框架,负责处理HTTP请求并将其映射到相应的Action,执行业务逻辑后,...

    struts 2.3.14官方全部打包(更新至2013/4/12)

    struts 2.3.14官方全部打包(更新至2013/4/12) 一共2个文件: struts2.3.14-all.part1 struts2.3.14-all.part2 源码、lib、文档全部包括的官方文件。

    struts-2.3.14-pro

    结合Spring和Hibernate等其他框架,可以构建出更加健壮和高效的系统。 8. **维护与升级**: 随着Struts框架的更新,定期检查并升级到最新版本是必要的,以确保应用的安全性和性能。同时,开发者应关注官方发布的...

    struts-2.3.14-all

    Struts 2的版本2.3.14是该框架的一个重要里程碑,它包含了对先前版本的改进和新特性,旨在提高开发效率、安全性和性能。 在Struts 2.3.14中,主要关注了以下几个方面: 1. **动作(Action)处理**:Struts 2的核心...

    structs+spring+hibernate整合jar包

    在IT领域,尤其是在Java开发中,`Struts2`、`Spring`和`Hibernate`是三个非常关键的框架,它们分别负责MVC模式中的表现层、业务层管理和持久层操作。这三个框架的整合使得开发者能够更高效地构建企业级应用。下面...

    Struts2.3.14.api chm格式

    Struts2.3.14 api 中文 chm 格式 大家都懂嘀

    比较新的SSH框架

    SSH框架,全称为Struts2、Spring和Hibernate的组合,是Java Web开发中常用的一种集成框架,用于构建高效、可扩展的企业级应用。这个资源基于Struts2.3.14、Spring3.1.1和Hibernate框架,展示了如何将这三大组件整合...

    struts-2.3.14源代码

    这个源代码包"struts-2.3.14-source"提供了Struts 2框架的核心版本2.3.14的全部源码,对于学习、理解和优化基于Struts 2的应用程序具有很高的价值。 首先,Struts 2的基础架构是基于拦截器(Interceptor)的,这是...

    struts 2.3.14(更新至2013/4/12)part2

    struts 2.3.14(更新至2013/4/12),第二部分。 太大了,分为两个文件: struts2.3.14-all.part1 struts2.3.14-all.part2 源码、lib、文档、例子全部打包到一起的官方文件。

    Struts2.3.14_api最新帮助文档

    Struts2.3.14_api最新chm格式帮助文档,希望能够帮助到大家

    struts-2.3.14.rar

    Struts 2.3.14 是一个历史悠久的版本,它是Apache Struts框架的一个更新,该框架主要用于构建基于Java的企业级Web应用程序。Struts 2是MVC(模型-视图-控制器)设计模式的实现,它提供了一种组织应用程序结构和控制...

    三大框架SSH架包

    SSH是Java Web开发中的三大主流框架,分别是Spring、Hibernate和Struts2的缩写。这个压缩包包含了这些框架的关键组件,使得开发者能够快速构建基于SSH的Web应用。 **Spring框架**: Spring是一个全面的后端应用程序...

Global site tag (gtag.js) - Google Analytics