JDBC Template
时间:2021-07-01 10:21:17
帮助过:12人阅读
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
2 <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
3 <property name="url" value="jdbc:mysql://localhost:3306/selection_course?useSSL=false&serverTimezone=GMT&useUnicode=true&characterEncoding=utf-8"/>
4 <property name="username" value="root"/>
5 <property name="password" value="61154852a"/>
6 </bean>
7 <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
8 <property name="dataSource" ref="dataSource"/>
9 </bean>
二、使用
1、在当前类中引入applicationContext(spring.xml)配置文件并创建一个对象
2、使用jdbcTemplate引入bean
3、使用JdbcTemplate对象使用对象的方法执行sql语句
例如:
1 ApplicationContext context=new ClassPathXmlApplicationContext("spring.xml");
2 JdbcTemplate jdbcTemplate=(JdbcTemplate)context.getBean("jdbcTemplate");
3 jdbcTemplate.execute("create table user1(id int,name varchar (20))");
三、具体使用方法
增删改查: https://blog.csdn.net/abc997995674/article/details/80183597
JDBC Template
标签:tab targe 语句 rda spring cti com pom 创建