读好书,交益友
发布时间:2015-04-16 17:52:38
对于 Spring Data JPA 使用的时间不长,只有两年时间。但是踩过坑的却不少。使用下列代码@Modifying @Query("update User u set u.firstname = ?1 where u.lastname = ?2") int setFixedFirstnameFor(String firstname, String lastname);首先让人奇怪的是,repository method只能返回int或者转为void,因为这个操作只会.........【阅读全文】
发布时间:2015-04-08 10:33:34
最近考虑为公司的saas平台添加elasticsearch,增强其搜索功能。下载了 https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.5.0.zipunzip -d . elasticsearch-1.5.0.zip cd elasticsearch-1.5.0/bin./elasticsearch提示Can't start up: not enough memory我当时就傻了,这台服务器.........【阅读全文】
发布时间:2015-04-07 15:46:59
# For JPA log4j.logger.org.springframework.orm.jpa=DEBUGlog4j.logger.org.springframework.orm.jpa.JpaTransactionManager=DEBUGlog4j.logger.org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter=DEBUGlog4j.logger.org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean=DEBUGlog4j.lo.........【阅读全文】