摘要: 1.简化 JDBC 模板查询每次使用都创建一个 JdbcTemplate 的新实例, 这种做法效率很低下.JdbcTemplate 类被设计成为线程安全的, 所以可以再 IOC 容器中声明它的单个实例, 并将这个实例注入到所有的 DAO 实例中.(推荐使用)JdbcTemplate 也利用了 Jav... 阅读全文
posted @ 2015-07-01 18:10 勿妄 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 1.建立数据属性文件db.propertiesjdbc.user=rootjdbc.password=rootjdbc.driverClass=com.mysql.jdbc.Driverjdbc.jdbcUrl=jdbc:mysql://127.0.0.1:3306/spring-1?charact... 阅读全文
posted @ 2015-07-01 17:30 勿妄 阅读(256) 评论(0) 推荐(0) 编辑
摘要: Eclipse集成Python教程Python集成开发环境(Eclipse + Pydev) 阅读全文
posted @ 2015-07-01 16:48 勿妄 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 集成 Tomcat 插件到 Eclipse 的过程 阅读全文
posted @ 2015-07-01 15:24 勿妄 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 1.建立业务类和切面类2.在配置文件中配置bean 引入命名空间: 配置bean:3.在配置文件配置AOP 阅读全文
posted @ 2015-07-01 14:45 勿妄 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1. 查询表的部分字段属性select t.*, c.comments from user_tab_columns t, user_col_comments c where t.table_name = c.table_name and t.column_name = c.column_nam... 阅读全文
posted @ 2015-07-01 10:38 勿妄 阅读(432) 评论(0) 推荐(0) 编辑