1.HibernateDao的用法: [java] public void betch_update_category(Long[] goodsIds,Long destCategoryId){ String hql = "update com.prl.entity.Goods set category = :category where
struts2+spring4+spring security4集成遇到的诡异问题
在struts2+spring4+spring security4整合过程中遇到如下的问题,表现的错误信息为以下几种: 1. Cannot convert value of type [org.springframework.security.web.DefaultSecurityFilterChain] to required type [java l
Struts2+Spring4 基于注解的配置(转载)
转载自:http://my.oschina.net/UpBoy/blog/194437 web.xml 配置如下 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <?xml version=”1.0″ encoding=”UTF-8″?>
spring JdbcTemplate.query使用简介
最近愈发的发现spring的功能是如此强大,感觉spring好像把java开发过程中的很多事情都替代了,一旦不理解原理,流程等等,就真的把程序员变成码农了。好吧,在使用jdbcTemplate.query进行查询过程中始终查不到值,在查看说明文档帮助下,最终了解JdbcTemplate.query的使用方法。 1.最简单的用法,查询统计行数,返回int,