- 浏览: 659385 次
- 性别:
- 来自: 常州
文章分类
- 全部博客 (345)
- java (63)
- Struts2 (11)
- Spring2.5 + (17)
- Hibernate (25)
- Struts2 Spring hibernate (5)
- log4j (3)
- apache tomcat (12)
- oracle (22)
- oracle_存储过程 (4)
- mysql (18)
- jquery (11)
- prototype (5)
- js (19)
- quartz (5)
- 设计模式 (6)
- eclipse/MyEclipse 注意事项 (9)
- eclipse (0)
- css (6)
- 正则表达式 (2)
- linux (18)
- PHP (6)
- 多线程 (20)
- XML (1)
- jstl (3)
- mongoDB (7)
- android (20)
- 反射 (1)
- IOS (46)
- SVN (3)
- C/C++ (4)
- 百度地图 (2)
- IO/SOCKET (3)
- 百度地图JS (1)
- 树莓派/香蕉派 (1)
最新评论
-
anny101:
想转发一下,不知道怎么转发。评论一下吧。方便查看。
fetch = FetchType.EAGER 作用 -
Navee:
果然我这也是是防火墙问题
解决 Linux 安装 httpd局域网无法访问 -
dhyang909:
...
oracle 10g+ 行列转换 -
国产希特勒:
真强,居然有人把公司的面试题挂到javaeye上了
锦江国际的一道面试题(很简单) -
tomfish88:
比如我要拦截不同业务的service类里面的方法 @Poi ...
Spring AOP annotation 拦截表达式 分析
web.xml:
可以把<property name="annotatedClasses">
改成
applicationContext.xml:
jdbc.properties:
struts.properties:
这个我不是太熟悉
struts.xml:
可以把<property name="annotatedClasses">
改成
<property name="packagesToScan"> <list> <value>com.***.***</value> </list> </property>
<?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"> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <!-- 连接池自带监控程序 --> <servlet> <servlet-name>ProxoolAdmin</servlet-name> <servlet-class> org.logicalcobwebs.proxool.admin.servlet.AdminServlet </servlet-class> </servlet> <servlet-mapping> <servlet-name>ProxoolAdmin</servlet-name> <url-pattern>/ProxoolAdmin.svl</url-pattern> </servlet-mapping> <filter> <filter-name>encodingFilter</filter-name> <filter-class>com.community.interceptor.EncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter> <filter-name>struts2</filter-name> <filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <!-- Spring 刷新Introspector防止内存泄露 --> <listener> <listener-class> org.springframework.web.util.IntrospectorCleanupListener </listener-class> </listener> <!-- 容器监听器便于清零服务器异常中断导致错误的用户登录状态 --> <listener> <listener-class>com.community.interceptor.WebContainerListener</listener-class> </listener> <!-- session监听器,便于用户session超时清零用户登录状态 --> <listener> <listener-class>com.community.interceptor.SessionListener</listener-class> </listener> <servlet> <servlet-name>Kaptcha</servlet-name> <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class> <init-param> <param-name>kaptcha.textproducer.char.string</param-name> <param-value>abcde2345678gfynmnpwx2345678ABCDEGFYNMNPWX</param-value> </init-param> <init-param> <param-name>kaptcha.textproducer.font.size</param-name> <param-value>45</param-value> </init-param> <init-param> <param-name>kaptcha.textproducer.char.length</param-name> <param-value>5</param-value> </init-param> <init-param> <param-name>kaptcha.image.width</param-name> <param-value>200</param-value> </init-param> <init-param> <param-name>kaptcha.image.height </param-name> <param-value>50</param-value> </init-param> <init-param> <param-name>kaptcha.textproducer.font.color </param-name> <param-value>204,139,193</param-value> </init-param> <init-param> <param-name>kaptcha.noise.color </param-name> <param-value>204,139,193</param-value> </init-param> <init-param> <param-name>kaptcha.background.clear.from </param-name> <param-value>white</param-value> </init-param> <init-param> <param-name>kaptcha.background.clear.to </param-name> <param-value>white</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>Kaptcha</servlet-name> <url-pattern>/kaptcha.jpg</url-pattern> </servlet-mapping> <!-- session超时定义,单位为分钟 --> <session-config> <session-timeout>100</session-timeout> </session-config> <welcome-file-list> <welcome-file>index.html</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:jee="http://www.springframework.org/schema/jee" 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-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd" default-lazy-init="true"> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <value>classpath:jdbc.properties</value> <!-- <value>/WEB-INF/jdbc.properties</value> --> </property> </bean> <bean id="dataSource" class="org.logicalcobwebs.proxool.ProxoolDataSource"> <property name="driver" value="${db.driver}"/> <property name="driverUrl" value="${db.url}"/> <property name="user" value="${db.user}"/> <property name="password" value="${db.password}"/> <property name="alias" value="${db.alias}"/> <property name="houseKeepingTestSql" value="${db.houseKeepingTestSql}"/> <property name="maximumConnectionCount" value="${db.maximumConnectionCount}"/> <property name="minimumConnectionCount" value="${db.minimumConnectionCount}"/> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"> <!-- 引用数据源 --> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="annotatedClasses"> <list> <value>com.community.entity.ClubCity</value> <value>com.community.entity.ClubOwnerUser</value> <value>com.community.entity.ClubUser</value> <value>com.community.entity.ClubDealer</value> <value>com.community.entity.ClubProvince</value> <value>com.community.entity.ClubMember</value> <value>com.community.entity.ClubExpert</value> <value>com.community.entity.ClubExpertTips</value> <value>com.community.entity.ClubNews</value> <value>com.community.entity.ClubNewsEntry</value> <value>com.community.entity.ClubNewsTags</value> <value>com.community.entity.ClubNewsType</value> <value>com.community.entity.ClubTipsTag</value> <value>com.community.entity.ClubTipsType</value> <value>com.community.entity.FordCar</value> <value>com.community.entity.FordClubMember</value> <value>com.community.entity.ForumAccess</value> <value>com.community.entity.ForumDating</value> <value>com.community.entity.ForumDegreeDescription</value> <value>com.community.entity.ForumFolder</value> <value>com.community.entity.ForumFriend</value> <value>com.community.entity.ForumGradeSwap</value> <value>com.community.entity.ForumGroupFriend</value> <value>com.community.entity.ForumInformation</value> <value>com.community.entity.ForumLoginUser</value> <value>com.community.entity.ForumMainModule</value> <value>com.community.entity.ForumMessage</value> <value>com.community.entity.ForumModerator</value> <value>com.community.entity.ForumModule</value> <value>com.community.entity.ForumPosts</value> <value>com.community.entity.ForumRankRolus</value> <value>com.community.entity.ForumReplicationMessage</value> <value>com.community.entity.ForumReplyThread</value> <value>com.community.entity.ForumSignature</value> <value>com.community.entity.ForumSpeak</value> <value>com.community.entity.ForumThread</value> <value>com.community.entity.ForumUserModule</value> <value>com.community.entity.ForumUserRank</value> <value>com.community.entity.ForumMd5pwd</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop> <prop key="hibernate.show_sql">false</prop> <prop key="hibernate.format_sql">false</prop> <prop key="hibernate.jdbc.fetch_size">20</prop> <prop key="hibernate.query.substitutions">true 1, false 0</prop> <prop key="hibernate.jdbc.batch_size">20</prop> <prop key="hibernate.cache.use_structured_entries">true</prop> <prop key="hibernate.cache.use_second_level_cache">true</prop> <prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop> <prop key="hibernate.cache.provider_configuration_file_resource_path"></prop> </props> </property> </bean> <!-- 事务配置 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory" /> </bean> <!-- 使用annotation 自动注册bean,并检查@Required,@Autowired的属性已被注入 --> <context:annotation-config/> <context:component-scan base-package="com.community" /> <!-- 使用annotation定义事务 --> <tx:annotation-driven transaction-manager="txManager" /> </beans>
jdbc.properties:
db.driver=oracle.jdbc.driver.OracleDriver db.url=jdbc:oracle:thin:@172.16.22.10:1521:crm db.user=crm db.password=p db.alias=OraclePool db.houseKeepingTestSql=select 1 db.characterEncoding=GBK db.maximumConnectionCount=30 db.minimumConnectionCount=5
struts.properties:
这个我不是太熟悉
struts.devMode = true struts.configuration.xml.reload=true struts.i18n.encoding=UTF-8 struts.action.extension=do,action #struts.locale=en_us struts.custom.i18n.resources=com/club/res/globalMessages struts.objectFactory =spring struts.multipart.maxSize=8388608 struts.enable.DynamicMethodInvocation=false struts.enable.SlashesInActionNames=true
struts.xml:
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd"> <struts> <package name="default" extends="struts-default"> <interceptors> <interceptor name="singleLoginInterceptor" class="com.community.interceptor.SingleLoginInterceptor"> </interceptor> <interceptor name="sessionTimeoutInterceptor" class="com.community.interceptor.SessionTimeoutInterceptor" /> <interceptor name="checkCookieInterceptor" class="com.community.interceptor.CheckCookieInterceptor" /> </interceptors> <global-results> <result name="timeout" type="redirect" >timeoutMsg.jsp</result> </global-results> </package> <package name="struts2ajax" extends="json-default"> </package> </struts>
发表评论
-
OneToMany字段序列化 failed to lazily initialize a collection of role
2014-06-06 18:51 1504hibernate项目中,如果要对onetomany的po ... -
hibernate 本地查询 字段别名 映射到 DTO时注意事项
2014-04-22 13:54 3548本地原生SQL: SELECT pole.pId as ... -
通过 servletContext 得到 数据源,进而得到connection
2010-07-12 21:54 1490DBOperation: package com.commun ... -
get传值乱码
2010-07-01 09:20 1316有的时候用get传值到后端时,会出现乱码 可这样解决 new ...
相关推荐
总的来说,SSH整合jar包为Java开发者提供了一站式的解决方案,极大地简化了企业级Web应用的开发工作,提高了开发效率和代码质量。不过,随着技术的发展,Spring Boot等现代化框架已经逐渐取代了SSH,它们提供了更加...
SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3个方案)SSH框架整合图解(3...
SSH整合是Java企业级开发中一种常见的解决方案,它极大地提高了开发效率,降低了系统的耦合度。 1. **Spring框架**: Spring是一个全面的后端应用程序框架,提供依赖注入(DI)和面向切面编程(AOP)等核心功能。...
SSH整合项目指的是在Java开发中,使用Spring、Struts2和Hibernate这三个开源框架进行集成的Web应用程序项目。这个项目描述中提到的是一个已经搭建完成的框架,但是去掉了Hibernate的配置文件,可能意味着项目选择了...
下面将详细讨论在SSH整合过程中可能遇到的问题及其解决方案。 1. **依赖冲突**:由于Struts、Spring和Hibernate各自有自己的库依赖,整合时可能会出现版本冲突。解决方法是确保所有库的版本兼容,或者使用Maven或...
在SSH整合中,Spring主要负责控制层和业务层的管理工作,如Bean的生命周期管理和事务处理。 Struts是基于MVC设计模式的Web应用框架,它将业务逻辑、表示逻辑和数据访问逻辑分离,使开发人员可以更专注于每一部分的...
SSH整合是Java开发中常见的一个概念,它代表的是Struts2、Spring和Hibernate这三个开源框架的集成。在Java企业级应用开发中,SSH框架的整合提供了强大的MVC(Model-View-Controller)架构支持,数据库操作功能以及...
SSH整合是指Spring、Struts和Hibernate这三大开源框架的集成,它们在Java Web开发中扮演着重要的角色。Spring提供依赖注入和AOP(面向切面编程),Struts处理MVC模式,而Hibernate则是持久层解决方案,负责数据库...
总的来说,这个“ssh整合jar包”是Java Web开发中的宝贵资源,它集成了三个关键框架,为开发者提供了一站式的解决方案,极大地提高了开发效率。只需合理配置和使用,就能构建出高效稳定的企业级应用。
SSH整合是Java Web开发中的一种常见模式,它结合了Struts、...但随着技术的发展,现在Spring Boot等一站式解决方案越来越流行,SSH整合的应用逐渐减少,但其背后的理念和知识点仍然对理解现代Java Web开发至关重要。
SSH整合架包是一种常见的Java开发工具集合,主要包含Spring、Struts和Hibernate这三个框架的集成。这个最新的SSH整合架包提供了方便的开发环境,帮助开发者快速构建基于MVC模式的Web应用程序。 Spring框架是核心,...
Maven SSH整合框架的优势在于提供了完整的开发解决方案,简化了项目构建和依赖管理,提高了开发效率。同时,SSH各组件间的协同工作使得业务逻辑、控制层和表现层分离,代码结构清晰,易于维护。此外,由于SSH都是...
SSH整合的目标是提供一套高效、灵活的Java企业级应用开发解决方案。 首先,我们来看Spring框架。Spring的核心是IoC(Inversion of Control,控制反转)和AOP(Aspect Oriented Programming,面向切面编程)。IoC...
SSH整合是Java开发中一种常见的技术栈组合,主要包括Struts2、Spring2.5和Hibernate3这三大框架。这三个框架的结合,旨在提供一个高效、松耦合且可扩展的Web应用开发解决方案。 首先,Struts2是一个强大的MVC...
总的来说,SSH整合提供了一套完整的解决方案,适用于大型、复杂的Java Web应用程序。它结合了三大框架的优点,使得开发过程更加高效和灵活。然而,学习和掌握SSH整合需要对每个框架有深入的理解,因此,开发者需要...
**SSH整合Shiro源码详解** 在Web应用开发中,安全性是至关重要的。SSH(Spring、Struts2、Hibernate)和Apache Shiro都是常见的Java安全框架。SSH是用于构建MVC架构的开源框架,而Shiro则专注于身份验证、授权和...