查询目标是完成3个功能:

(1)查询表,返回某一个值。例如查询表中记录的条数,返回一个int类型数据

(2)查询表,返回结果为某一个对象。

(3)查询表,返回结果为某一个泛型的list集合。

一、查询表中记录的条数,返回一个int类型数据的操作方法

使用jdbcTemplate

原理是把加载驱动Class.forName("com.mysql.jdbc.Driver");

和连接数据库Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/sw_database?user=root&password=root");

用一个对象完成DriverManagerDataSource dataSource=new DriverManagerDataSource();

package com.swift;

import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.stereotype.Component; @Component(value="jdbcTemplateDemo")
public class JdbcTemplateDemo {
public int queryCount() {
DriverManagerDataSource dataSource=new DriverManagerDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/sw_database");
dataSource.setUsername("root");
dataSource.setPassword("root"); JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);
String sql="select count(*) from sw_user";
int count=jdbcTemplate.qureyForObject(sql, Integer.class);
return count;
} public boolean update() {
DriverManagerDataSource dataSource=new DriverManagerDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/sw_database");
dataSource.setUsername("root");
dataSource.setPassword("root"); JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);
String sql="update sw_user set password=? where username=?";
int count=jdbcTemplate.update(sql,"lunchtime","doomsday");
if(count!=0) {
return true;
}
return false;
} }

查询数据库操作使用JdbcTemplate对象根据数据源直接使用qureyForObject方法完成,第二个参数Integer.class为返回值类型的class。

之前完成需按下边方法:

PreparedStatement ps=conn.prepareStatement("select count(*) from sw_user");

???ResultSet rs=ps.executeQuery();???有待验证

上边代码使用Spring框架注解生成对象方法

xml配置文件代码如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 开启注解扫描——对象和属性 -->
<context:component-scan base-package="com.swift"></context:component-scan>
<!-- 开启aop注解方法 -->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy> </beans>

使用Servlet类进行测试:

package com.swift;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
@WebServlet("/test")
public class ServletTest extends HttpServlet {
private static final long serialVersionUID = 1L;
public ServletTest() {
super();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8");
response.getWriter().append("Served at: ").append(request.getContextPath());
ApplicationContext context=new ClassPathXmlApplicationContext("aop.xml");
JdbcTemplateDemo jdbcTemplateDemo=(JdbcTemplateDemo) context.getBean("jdbcTemplateDemo");
response.getWriter().append(jdbcTemplateDemo.queryCount()); }
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
} }

运行结果图

最新文章

  1. js 、jsdoc生成33
  2. Linux下Bash入门学习笔记
  3. ENode 1.0 - 事件驱动架构(EDA)思想的在框架中如何体现
  4. 二维数组的传输 (host &lt;-&gt; device)
  5. 黄聪:VS2010每次F5启动都重新编译但是没办法进入断点
  6. 自定义控件winfrom
  7. 【转载】关于typedef的用法总结
  8. andorid 进度条
  9. iOS开发——图片轮播图+单选选项
  10. IOS中获取文件路径的方法
  11. Xstream之常用方式与常用注解
  12. [转]我的第一个WCF
  13. Oracle异常汇总
  14. JSP知识点大致介绍1
  15. bootstrap简单图文环绕效果
  16. activiti bpmnModel使用
  17. Ecto中的changeset,schema,struct,map
  18. Cookie保存用户名和密码
  19. python上下文管理协议
  20. 给iOS开发新手送点福利,简述UIActivityIndicatorView的属性和用法

热门文章

  1. CodeForces 665B 【水-暴力】
  2. Codeforces712C【贪心】
  3. hoj2665 Factory of XiaoE
  4. [Xcode 实际操作]一、博主领进门-(8)应用代理文件(AppDelegate.swift)详解
  5. bzoj1139:[POI2009]Wie
  6. PAT甲级——1130 Infix Expression (25 分)
  7. PAT甲级——1134 Vertex Cover (25 分)
  8. CSS实现多行文字限制显示
  9. 字典树(POJ 2503)
  10. IE_Script70:没有权限问题处理