摘要:
<!--可以免费转载,转载时请注明出处 http://pengqb.iteye.com 。--><project xmlns="http://maven.apache.org/POM/4.0.0 " xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
摘要:
pom.xml文件如下: 生产者: 消费者: 阅读全文
摘要:
mysql锁机制分为表级锁和行级锁,本文就和大家分享一下我对mysql中行级锁中的共享锁与排他锁进行分享交流。 共享锁又称为读锁,简称S锁,顾名思义,共享锁就是多个事务对于同一数据可以共享一把锁,都能访问到数据,但是只能读不能修改。 排他锁又称为写锁,简称X锁,顾名思义,排他锁就是不能与其他所并存, 阅读全文
摘要:
Spring的AOP事务管理默认是针对unchecked exception回滚(运行期异常,Runtime Exception),如果希望手动控制事务的回滚,可以通过 TransactionAspectSupport.currentTransactionStatus().setRollbackOn 阅读全文
摘要:
方式1: select * from person where name like "%"#{name}"%" 方式2: select * from person where name like '%'||#{name}||'%' 方式3: select * from person where na 阅读全文
摘要:
相信不少人多纠结LocalSessionFactoryBean与SessionFactory到底是什么关系,怎么去进行关联的,正如图所示: transactonManager有一个对sessionFactory的引用,现在我们来看下org.springframework.orm.hibernate4 阅读全文
摘要:
在spring4+hibernate4整合过程中,使用@Transactional注解事务会报"Exception in thread "main" org.hibernate.HibernateException: save is not valid without active transact 阅读全文
摘要:
当我们需要使用BeanPostProcessor时,直接在Spring配置文件中定义这些Bean显得比较笨拙,例如: 使用@Autowired注解,必须事先在Spring容器中声明AutowiredAnnotationBeanPostProcessor的Bean: <bean class="org. 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8"?><!-- scan:当此属性设置为true时,配置文件如果发生改变,将会被重新加载,默认值为true。 scanPeriod:设置监测配置文件是否有修改的时间间隔,如果没有给出时间单位,默认单位是毫秒。当scan为true时 阅读全文
摘要:
前端时间遇到chrome,360浏览器无法加载图片问题,提示等待可用的套接字 后来发现原因,原来是使用html5<video>标签时使用了默认的配置,默认情况下<video>标签会预加载视频,多个<video>同时请求视频占用大量的链接资源,造成图片无法显示,后来将<video>标签preload属 阅读全文