- 浏览: 216671 次
- 性别:
- 来自: 成都
文章分类
最新评论
-
springmvc_springjpa:
spring mvc demo教程源代码下载,地址:http: ...
SpringMVC初探_(1) -
LinApex:
测试,如何看性能,如何评比各种服务器,你也写篇日志呗
压力测试 (LoadRunner+Websphere +Tomcat) -
tanying2869:
没找到附件
集成struts2 spring hibernate,使用注解 -
xiaotao.2010:
ranwei09321115 写道晕 不是免费的!...我也发 ...
各种免费的Webservice接口 -
xiaotao.2010:
gaoxingang2008 写道这些方法 都用了 还是不行呀 ...
禁用浏览器后退按钮
<?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" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <aop:aspectj-autoproxy/> <tx:annotation-driven transaction-manager="txManager"/> <import resource="applicationContext-dept.xml"/> <bean id="impl1" class="com.ibm.springtest.ioc.Impl1" depends-on="conn" scope="singleton" init-method="myInit" destroy-method="myDestroy"> <lookup-method bean="conn" name="getConn"/> <property name="str" value="china"></property> <property name="list"> <list> <value>111111111</value> <value>sssssssss</value> </list> </property> <property name="map"> <map> <entry> <key><value>a1</value></key> <value>a11111111111</value> </entry> <entry> <key><value>a2</value></key> <ref bean="conn"/> </entry> </map> </property> <property name="ms" ref="messageSource"></property> </bean> <bean id="conn" class="com.ibm.springtest.ioc.DbConn" scope="prototype" lazy-init="true"></bean> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> <list> <value>abc</value> </list> </property> </bean> <bean id="myTarget" class="com.ibm.springtest.ht.MyTarget"/> <bean id="myAdvice" class="com.ibm.springtest.ht.MyAdvice"/> <!-- <aop:config > <aop:aspect id="myAspect" ref="myAdvice"> <aop:pointcut id="myPointcut" expression="execution(* com.ibm.springtest.ht.MyTarget.test(..))"/> <aop:after pointcut-ref="myPointcut" method="ttt"/> </aop:aspect> <aop:aspect id="myAspect2" ref="myAdvice"> <aop:pointcut id="myPointcut2" expression="execution(* com.ibm.springtest.ht.MyTarget.t(..))"/> <aop:before pointcut-ref="myPointcut2" method="fun"/> </aop:aspect> </aop:config> --> <bean id="myDataSource" destroy-method="close" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/mydb"/> <property name="username" value="root"/> <property name="password" value="root"/> </bean> <bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="myDataSource"/> <property name="mappingResources"> <list> <value>com/ibm/springtest/dao/UserModel.hbm.xml</value> </list> </property> <property name="hibernateProperties"> <value> hibernate.dialect=org.hibernate.dialect.MySQLDialect hibernate.show_sql=true hibernate.format_sql=true </value> </property> </bean> <bean id="userDao" class="com.ibm.springtest.dao.JdbcImpl"> <property name="dataSource" ref="myDataSource"></property> </bean> <bean id="userDao2" class="com.ibm.springtest.dao.HibernateImpl"> <property name="sf" ref="mySessionFactory"></property> </bean> <bean id="userEbi" class="com.ibm.springtest.dao.UserEbo"> <property name="userDao" ref="userDao2"></property> </bean> <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="myDataSource"/> </bean> <!-- <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="*"/> </tx:attributes> </tx:advice> <tx:advice id="txAdvice2" transaction-manager="txManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="*" propagation="REQUIRES_NEW"/> </tx:attributes> </tx:advice> <aop:config> <aop:pointcut id="myPointcut" expression="execution(* com.ibm.springtest.dao.*.*(..))"/> <aop:pointcut id="myPointcut2" expression="execution(* com.ibm.springtest.dao.*.*(..))"/> <aop:advisor pointcut-ref="myPointcut" advice-ref="txAdvice"/> <aop:advisor pointcut-ref="myPointcut2" advice-ref="txAdvice2"/> </aop:config> --> </beans>
发表评论
-
键码(KeyCode)
2013-02-28 16:32 18986字母和数字键的键码值(keyCode) 按键 键 ... -
Hibernate基于注解_Oracle
2012-10-10 23:30 1176不细说了直接上代码 代码中的注释可以参考Hiberna ... -
1111111
2012-08-24 14:35 0{id=news_ln_statistics, categor ... -
my aa
2012-07-18 17:15 19女士们,先生们,早上好!很荣幸有机会参加此次面试。我希望今天 ... -
SSH 配置文件
2011-04-18 15:50 1368将一年前写的SSH基于配置的改成 Hibernate基于注解的 ... -
Hibernate-学习笔记06-Relationship-One2One
2011-04-14 20:57 1081Hibernate真的很强大,尤其是在关系这方便,方便到只要你 ... -
Spring-学习笔记01-CrossCuttingConcern
2011-04-14 19:30 910近做Spring试验发现了个问题: 1、advice不能监控 ... -
Hibernate-学习笔记05-数据持久化的三种状态
2011-04-13 20:26 1457Hibernate 数据持久化 ... -
Hibernate-学习笔记04-数据更新方法
2011-04-13 20:02 4232试验目的: 更新数 ... -
Hibernate-学习笔记03-getCurrentSession和openSession区别
2011-04-12 19:52 1535SessionFactory得到Session的方法有两种ge ... -
Hibernate-学习笔记01
2011-04-11 15:53 1102第一个Hibernate小程序 Hiberna ... -
Interceptor的初步认识
2011-03-31 18:15 1106一个名称 : AOP(Aspect ... -
Struts2 Action中的数据填充
2011-03-31 13:53 1915开门见山 直接上代码 ... -
struts-笔记-7
2011-03-18 16:02 9048 Dynamic ActionForm ... -
struts-笔记-6
2011-03-18 16:01 10557 标签 Struts ... -
Struts-笔记-5
2011-03-18 15:57 10526.Struts 的 MVC 组件 ... -
Struts-笔记-4
2011-03-18 15:55 8014.Struts 工作原理和开发流程 4 ... -
Struts-笔记-3
2011-03-18 15:54 11103. 用 struts 开发简单的登录示例程 ... -
Struts-笔记-2
2011-03-18 15:53 8682 . 搭建 Struts 开发环境 ... -
Struts-笔记-1
2011-03-18 15:50 870******************************* ...
相关推荐
`redis-spring-boot-starter`是Spring Boot生态中的一个启动器(Starter),它简化了Redis与Spring Boot集成的过程,使得开发者无需手动配置复杂的Redis连接参数,就能快速地在应用中启用Redis服务。这个启动器通常...
1. **src/main/java**:包含项目源代码,包括定义Job类和配置Spring Bean的类。 2. **src/main/resources**:存储配置文件,如Spring的applicationContext.xml或application.properties,以及Quartz的配置如quartz....
这个压缩包"dynamic-datasource-spring-boot-starter-master.zip"提供了一个快速启动的解决方案,使得开发者能够便捷地在SpringBoot应用中配置和管理多个数据源。 首先,我们要理解什么是SpringBoot。SpringBoot是...
本文将深入探讨`canal-spring-boot-starter`的核心概念、配置及使用方法。 一、Canal简介 Canal是阿里巴巴开源的一款基于MySQL数据库增量日志解析的组件,它能够监听并解析MySQL的binlog,将binlog事件转化为结构...
【标题】"jtransfo-spring-0.5.zip" 提供的是一个集成JTransfo与Spring框架的版本,主要用于对象转换。JTransfo是一个Java库,它简化了Java对象之间的映射过程,使得数据传输对象(DTO)与业务对象(BO)之间的转换...
spring boot项目记录日志、每日日志归档、彩色日志都会在logback-spring.xml文件中进行配置。给大家分享完整的日志配置信息,以及各种配置的各种含义,有着完整的中文注释。 此logback.xml文件既有成彩色输出也有...
在Spring环境中,EasyBatch可以与Spring的IoC(Inversion of Control)容器无缝集成,提供强大的依赖注入功能,使开发者能够更方便地管理和配置批处理任务。EasyBatch 2.2.0版本带来了多项改进和优化,包括性能提升...
首先,Spring框架是Java企业级应用开发的核心,它提供了一个全面的编程和配置模型,用于简化企业级Java应用的复杂性。Spring通过依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented Programming...
<artifactId>spring-cloud-starter-netflix-eureka-server ``` **步骤2**:配置Eureka Server ```yaml server: port: 8761 eureka: instance: hostname: localhost client: registerWithEureka: false ...
为了配置Spring 3.1的定时器,我们需要添加相关的依赖到项目的Maven pom.xml文件中。这些依赖通常包括Spring核心库、Spring上下文库和Spring任务库,例如: ```xml <groupId>org.springframework <artifactId>...
2. **配置SchedulerFactoryBean**:在Spring的配置文件中,配置SchedulerFactoryBean,指定Quartz的配置文件路径、是否自动启动等属性。 3. **配置JobDetailBean**:为每个需要执行的任务创建一个JobDetailBean,...
在本篇文章中,我们将探讨如何在Spring Boot应用中配置读写分离,以及使用MySQL Router作为中间件。 首先,了解MySQL的主从复制是非常必要的。在一个典型的主从架构中,有一个主库负责写操作,多个从库负责读操作。...
【标题】"spring-cloud-demo备份20191024_springcloud_java_分布式_cloud_" 涵盖了Spring Cloud作为一个核心的分布式系统开发框架,它基于Spring Boot的微服务构建工具,使得开发者能够轻松地创建和配置服务发现、...
ROO_OPTS 是一个可选的环境变量,用于配置SpringRoo的一些高级选项。例如,可以通过设置这个变量来指定SpringRoo使用的特定版本的JDK。 **1.5 快速入门:在十分钟内创建自己的Web应用** 快速入门指南介绍了如何在...
配置SpringCloud以连接Redis集群,你需要在Spring Boot的`application.yml`或`application.properties`中设置Redis连接信息。由于是集群模式,因此需要指定`cluster.nodes`属性,如下所示: ```yaml spring: data:...
在`Spring各版本核心配置文件备份`这个压缩包中,我们可以找到不同版本的Spring框架使用的配置文件模板。这些文件可以帮助我们了解每个版本中新增的功能、调整的API,以及推荐的最佳实践。例如,从Spring 2.x到3.x的...
3. 使用Spring的`@Scheduled`注解或XML配置设置定时任务,定义备份的频率和时间。 4. 处理备份结果,可能包括保存到本地、上传到云存储或其他备份策略。 至于文件列表,BackUp.java、InitTime.java、ScheduleData....
"gespo-spring-archives" 是一个与Java相关的项目,很可能是一个关于Spring框架的存档。Spring是一个广泛应用的开源框架,主要用于构建企业级的Java应用程序,尤其在开发基于Java的Web应用时,Spring以其模块化、...
3. **故障隔离**:如果Config Server或Eureka Server出现故障,服务实例还可以依赖本地缓存的配置继续运行,直到故障恢复或手动切换到备份配置服务器。 4. **蓝绿部署和金丝雀发布**:通过配置中心,可以轻松地为...