`
文章列表
修改了pom文件的依赖的版本号,不然报错,忽略测试错误. <plugin>         <groupId>org.apache.maven.plugins</groupId>         <artifactId>maven-surefire-plugin</artifactId>         <configuration>           <failIfNoTests>false</failIfNoTests>           <testFailureIgno ...
ssss
7z的一个较新版本
maven的两个版本   apache-maven-2.2.1\conf\settings.xml配置文件   http://mvnrepository.com/ 这里有Maven的依赖包,可搜索,也可查询可用的包的版本,比如能搜到的版本,在配置的时候就可以使用这个版本号.
The ActiveMQ in Action examples 第三章 ActiveMQ 实例   This chapter covers  Introduction to the use case for each of the book examples  Use of Maven for compiling and running the examples  How to use the example applications with ActiveMQ   本章内容包括:     介绍本书中所有实例的用例     使用Maven编译和运行书中实例     ...
4.1 Understanding connector URIs   4.1 了解连接器的URI   Before discussing the details of connectors and their role in the overall ActiveMQ architecture, it’s important to understand connector URIs. Uniform resource identifiers (URIs), as a concept, aren’t new, and you’ve probably used them over an ...
Connecting to ActiveMQ 第四章 连接到ActiveMQ   The main role of a JMS broker such as ActiveMQ is to provide a communication infrastructure for client applications. For that reason, ActiveMQ provides connectors, a connectivity mechanism that provides client-to-broker communications (using ...
一次刷新重复提交问题及其引入的新问题的解决过程记录   1. 问题描述      用户登陆后,刷新页面,IE提示重复提交,需要用户做出选择,影响用户体验.    2. 问题分析.        登陆页面是一个jsp,form中使用一个loginAction.action提交登陆.提交后在struts中    dispatch到主页面,即index.jsp,此时浏览器地址栏显示地址是用于登陆的action,    即: http://ip:port/loginAction.action这样的格式.        这个action地址就是上面登陆页面form的action, ...
Atomikos 版本 3.4的有文档 3.8的比较新  
Spring3 集成 Hibernate4,使用Atomikos实现分布式事务控制   注意事项 <!-- 5. 配置事务管理器 注意是,hibernate4,配置成hibernate3报错 -->            <bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">              <property name="sessionFactory" ...
Spring3 集成 Hibernate4事务   注意事项 <!-- 5. 配置事务管理器 注意是,hibernate4,配置成hibernate3报错 -->            <bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">              <property name="sessionFactory" ref="sessionF ...
Spring3 整合Hibernate4   注意事项: 1. 导入jar包 参考工程中的,其中需要jaxen-1.1-beta-6.jar和commons-logging-api.jar,    commons-logging-1.1.1.jar比较特殊   2. Hibernate4 中dao组件不需要在继承HibernateDaoSupport了.    可以在Dao组件中直接注入ses ...
注意Hibernate4在开发当中的一些改变 Hibernate4的改动较大只有spring3.1以上版本能够支持,Spring3.1取消了HibernateTemplate,因为Hibernate4的事务管理已经很好了,不用Spring再扩展了。这里简单介绍了hibernate4相对于hibernate3配置时出现的错误,只列举了问题和解决方法,详细原理如果大家感兴趣还是去自己搜吧,网上很多。 Spring3.1去掉了HibernateDaoSupport类。hibernate4需要通过getCurrentSession()获取session。并且设置<prop key=&q ...

Hibernate 备忘

Hibernate 备忘    1. 概述      HQL查询依赖于Query类,每一个Query实例对应一个查询对象.    使用HQL查询按如下步骤进行:    (1) 获取Hibernate Session对象    (2) 编写HQL语句    (3) 以HQL语句作为参数,调用createQuery方法创建查询对象    (4) 如果HQL语句包含参数,则调用Query的setXxx方法为参数赋值    (5) 调用Query对象的list()或uniqueResult()方法返回查询结果列表.     2. From 子句      From 后面跟的 ...
Hibernate 关联映射   1. 单向N-1关联       单向N-1关联只需要从N的一端访问1的一端.     如,多人住同一地址,只需要在人的实体端找到地址实体,无需关心一个地址的所有人.     (Person类有个Address类型的Field,而Address类无需关联Person)      1.1 无连接表的N-1关联(基于外键)       Person端增加了Address,该属性不是一个普通的组件,而是引用另一个持久化的类.     使用<many-to-one>在N端(Person端)增加一个外键(关联到address表的主键ad ...
Global site tag (gtag.js) - Google Analytics