spring 第一篇(1-1):让java开发变得更简单(下)转

时间:2022-01-18 18:23:54

spring 第一篇(1-1):让java开发变得更简单(下)

这个波主虽然只发了几篇,但是写的很好

上面一篇文章写的很好,其中提及到了Spring的jdbcTemplate,templet方式我之前已经有点了解了,但是Spring的还不知道,这次真的又学到了Spring的

使用Spring的jdbcTemplate进一步简化JDBC操作

配置文件

  1. package xm.zjl.dao;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.jdbc.core.JdbcTemplate;
  6. import org.springframework.stereotype.Repository;
  7. /**
  8. * 测试标签dao
  9. *
  10. * @author zjl
  11. *
  12. */
  13. @Repository
  14. public class TagTestDao{
  15. @Autowired
  16. private JdbcTemplate jdbcTemplate;
  17. public List getList(){
  18. List list = new ArrayList();
  19. String sql = "select * from user";
  20. jdbcTemplate.execute(sql);
  21. return list;
  22. }
  23. }

2.配置文件:

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:context="http://www.springframework.org/schema/context"
  3. xmlns:p="http://www.springframework.org/schema/p"
  4. xmlns:mvc="http://www.springframework.org/schema/mvc"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/mvc
  11. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
  12. <!-- 启动注解驱动的Spring MVC功能,注册请求url和注解POJO类方法的映射-->
  13. <mvc:annotation-driven />
  14. <!-- 启动包扫描功能,以便注册带有@Controller、@Service、@repository、@Component等注解的类成为spring的bean -->
  15. <context:component-scan base-package="xm.zjl.*" />
  16. <!-- 对模型视图名称的解析,在请求时模型视图名称添加前后缀 -->
  17. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/" p:suffix=".jsp" />
  18. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  19. <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
  20. <property name="url" value="jdbc:mysql://localhost:3306/mydata"></property>
  21. <property name="username" value="root"></property>
  22. <property name="password" value="root"></property>
  23. </bean>
  24. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  25. <property name="dataSource" ref="dataSource"/>
  26. </bean>
  27. </beans>

2.继承JdbcDaoSupport类,但是dataSource没有设置成功(注解方式),若果有方法请留言,多谢