2022年3月31日

C3P0 DBCP DRUID

摘要: public class JDBCUtils { private static DataSource c3p0DataSource = new ComboPooledDataSource("testC3P0"); public static Connection getC3P0Connection( 阅读全文

posted @ 2022-03-31 14:43 金满仓 阅读(19) 评论(0) 推荐(0) 编辑

2022年3月30日

JDBC中事务相关方法

摘要: public void transactionMethod() throws Exception { Connection connection = JDBCUtils.getConnection(); connection.setAutoCommit(false); connection.getT 阅读全文

posted @ 2022-03-30 08:13 金满仓 阅读(15) 评论(0) 推荐(0) 编辑

JDBC批量插入

摘要: public void batchInsert() { String sql = "insert into goods(name) values(?)"; Connection conn = null; PreparedStatement ps = null; try { conn = JDBCUt 阅读全文

posted @ 2022-03-30 08:08 金满仓 阅读(312) 评论(0) 推荐(0) 编辑

JDBC操作Blob

摘要: public void updateBlob() throws Exception { String sql = "insert into customers(name,email,birth,photo)values(?,?,?,?)"; Connection connection = JDBCU 阅读全文

posted @ 2022-03-30 08:06 金满仓 阅读(52) 评论(0) 推荐(0) 编辑

BaseDAO.java

摘要: package com.atguigu3.dao; import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.sql.C 阅读全文

posted @ 2022-03-30 07:28 金满仓 阅读(34) 评论(0) 推荐(0) 编辑

JDBCUtils.java

摘要: package com.life.util; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.DriverManager; import java. 阅读全文

posted @ 2022-03-30 06:46 金满仓 阅读(22) 评论(0) 推荐(0) 编辑

2022年3月26日

JDBC获取连接

摘要: public void getConnection() throws Exception { //1.获取数据库连接信息 InputStream is = ConnectionTest.class.getClassLoader().getResourceAsStream("jdbc.properti 阅读全文

posted @ 2022-03-26 17:07 金满仓 阅读(23) 评论(0) 推荐(0) 编辑

2022年3月25日

JDBC概览

摘要: 阅读全文

posted @ 2022-03-25 11:46 金满仓 阅读(13) 评论(0) 推荐(0) 编辑

2022年3月24日

Spring AOP原理简述

摘要: Spring AOP底层是动态代理,大致流程是这样,在InvocationHandler的invoke方法里,根据参数method反射拿到被代理方法的签名: String signature = Modifier.toString(method.getModifiers()) + method.ge 阅读全文

posted @ 2022-03-24 20:45 金满仓 阅读(19) 评论(0) 推荐(0) 编辑

Spring AOP 配置的十九个关键元素

摘要: context:component-scan base-pakage aop:aspectj-autoproxy Aomponent Aspect Before Arround After AfterReturning AfterThrowing ProceedJoinPoint.proceed P 阅读全文

posted @ 2022-03-24 18:14 金满仓 阅读(35) 评论(0) 推荐(0) 编辑

导航