09 2017 档案
摘要:当鼠标点击input框时,想让全选input框的所有内容只需要加“onfocus="this.select();”就可以了
阅读全文
摘要:在项目中,@Transactional(rollbackFor=Exception.class),如果类加了这个注解,那么这个类里面的方 法抛出异常,就会回滚,数据库里面的数据也会回滚。 这种设置是因为Spring的默认回滚RuntimeException,如果想要回滚Exception时,要设置@
阅读全文
摘要:使用了hibernate的主键生成策略,而在程序中又主动去设置了主键值。<class name="ProductRegion" table="PRODUCT_REGION" lazy="false"> <id name="id" column="PRODUCT_REGION_ID"> <genera
阅读全文
摘要:String sql = select {s.*} from t_student s where s.age22; SQLQuery slqQuery = session.createSQLQuery(sql); sqlQuery.addEntity(s, Student.class); List
阅读全文
摘要:今天,Tomcat给了我这么一个异常:java.lang.OutOfMemoryError: PermGen space。自己是第一次遇到,抱着好奇的心情google了一下,居然是个很常见的异常!故记录一下。:) 原因: PermGen space的全称是Permanent Generation space,是指内存的永久保存区域,这块内存主要是被JVM存放Class和Meta...
阅读全文
摘要:构建dubbo项目的时候会遇到: Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'dubbo:application'. - schema_refere...
阅读全文