04 2016 档案
摘要:Spring 整合 hibernate 配置 1. spring 配置管理datasource 及 sessionFactory 1) 引入相关jdbc配置文件。 <context:property-placeholder location="classpath:jdbc.properties" /
阅读全文
摘要:Oracle: ORACLE 分页: select r,ename,sal from (select rownum r, ename,sal from (select * from emp order by sal desc )) where r>5 and r<=10; select rownum
阅读全文
摘要:转自: http://www.cnblogs.com/superjt/p/3309255.html 现在主流的Web MVC框架除了Struts这个主力 外,其次就是Spring MVC了,因此这也是作为一名程序员需要掌握的主流框架,框架选择多了,应对多变的需求和业务时,可实行的方案自然就多了。不过
阅读全文