码迷,mamicode.com
首页 > Web开发 > 详细

使用MVC模式开发程序,完成数据的模糊查询【转】

时间:2014-07-31 12:59:36      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   java   使用   os   strong   

编写程序:使用MVC模式开发程序,完成数据的模糊查询。

要求:

(1)index.jsp用于输入要查询的数据。

(2)result.jsp:用于显示结果。

(3)queryServlet:用于验证数据、实例化JavaBean、调用连接数据库、控制页面跳转

(4)queryDAO:用于连接数据库及进行数据库的操作如:查询、删除、更改等

(5)Student:JavaBean用于数据的封装,方便将查询结果在servlet与jsp页面之间进行传递等

以上几个部分共同构成了MVC模式,JSP为MVC模式当中的V,Servlet为C,queryDAO与JavaBean合在一起为M。

 

 

  1. <%@ page language="java" import="java.util.*" pageEncoding="GBK"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP ‘index.jsp‘ starting page</title>  
  13.     <meta http-equiv="pragma" content="no-cache">  
  14.     <meta http-equiv="cache-control" content="no-cache">  
  15.     <meta http-equiv="expires" content="0">      
  16.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  17.     <meta http-equiv="description" content="This is my page">  
  18.     <!-- 
  19.     <link rel="stylesheet" type="text/css" href="styles.css"> 
  20.     -->  
  21.   </head>  
  22.     
  23.   <body>  
  24.     请输入要查询的内容:  
  25.     <form action="queryServlet" method="post">  
  26.     <input name="name">  
  27.     <input type="submit" value="模糊查询">  
  28.     </form>  
  29.   </body>  
  30. </html>  

 

 

 

  1. <%@ page language="java" import="java.util.*,com.mars.*" pageEncoding="gb2312"%>  
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  3. <html>  
  4. <head>  
  5.     <title>查询结果</title>  
  6. </head>  
  7. <body>  
  8.    查询结果如下:  
  9.    <table border="1">  
  10.    <tr>  
  11.         <td>学号</td>  
  12.         <td>姓名</td>  
  13.         <td>年龄</td>  
  14.         <td>性别</td>  
  15.         <td>地址</td>  
  16.    </tr>  
  17.    <%  
  18.         ArrayList arrayList = (ArrayList)request.getAttribute("arrayList");  
  19.         for(int i=0; i<arrayList.size();i++){  
  20.         Student student = (Student)arrayList.get(i);  
  21.    %>  
  22.    <tr>  
  23.         <td><%=student.getId()%></td>  
  24.         <td><%=student.getName()%></td>  
  25.         <td><%=student.getAge()%></td>  
  26.         <td><%=student.getSex()%></td>  
  27.         <td><%=student.getAddress()%></td>  
  28.    </tr>  
  29.    <%  
  30.         }  
  31.    %>  
  32.    </table>  
  33. </body>  
  34. </html>  



 

 

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app version="2.4"   
  3.     xmlns="http://java.sun.com/xml/ns/j2ee"   
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  5.     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   
  6.     http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">  
  7.   <welcome-file-list>  
  8.     <welcome-file>index.jsp</welcome-file>  
  9.   </welcome-file-list>  
  10.     
  11.     <servlet>  
  12.          <servlet-name>queryServlet</servlet-name>   
  13.          <servlet-class>com.mars.queryServlet</servlet-class>   
  14.     </servlet>  
  15.         
  16.     <servlet-mapping>  
  17.         <servlet-name>queryServlet</servlet-name>   
  18.         <url-pattern>/queryServlet</url-pattern>   
  19.     </servlet-mapping>  
  20.     
  21. </web-app>  



 

 

  1. package com.mars;  
  2.   
  3. public class Student {  
  4.     private int id;  
  5.     private String name;  
  6.     private String sex;  
  7.     private int age;  
  8.     private String address;  
  9.     public int getId() {  
  10.         return id;  
  11.     }  
  12.     public void setId(int id) {  
  13.         this.id = id;  
  14.     }  
  15.     public String getName() {  
  16.         return name;  
  17.     }  
  18.     public void setName(String name) {  
  19.         this.name = name;  
  20.     }  
  21.   
  22.     public String getSex() {  
  23.         return sex;  
  24.     }  
  25.     public void setSex(String sex) {  
  26.         this.sex = sex;  
  27.     }  
  28.     public int getAge() {  
  29.         return age;  
  30.     }  
  31.     public void setAge(int age) {  
  32.         this.age = age;  
  33.     }  
  34.     public String getAddress() {  
  35.         return address;  
  36.     }  
  37.     public void setAddress(String address) {  
  38.         this.address = address;  
  39.     }  
  40. }  



 

 

  1. package com.mars;  
  2.   
  3. import java.io.IOException;  
  4. import java.util.ArrayList;  
  5. import javax.servlet.ServletException;  
  6. import javax.servlet.http.HttpServlet;  
  7. import javax.servlet.http.HttpServletRequest;  
  8. import javax.servlet.http.HttpServletResponse;  
  9. import com.mars.QueryDAO;  
  10.   
  11. public class queryServlet extends HttpServlet {  
  12.   
  13.     public void doPost(HttpServletRequest request, HttpServletResponse response)  
  14.             throws ServletException, IOException {  
  15.         request.setCharacterEncoding("GBK");  
  16.         response.setCharacterEncoding("GBK");  
  17.         String name = request.getParameter("name");  
  18.         QueryDAO qd = new QueryDAO();  
  19.         ArrayList arrayList = qd.queryLike(name);  
  20.         request.setAttribute("arrayList", arrayList);  
  21.         request.getRequestDispatcher("/result.jsp").forward(request, response);  
  22.     }  
  23.   
  24. }  



 

 

  1. package com.mars;  
  2.   
  3. import java.sql.*;  
  4. import java.util.ArrayList;  
  5. import com.mars.Student;  
  6.   
  7. public class QueryDAO {  
  8.     private Connection conn = null;  
  9.   
  10.     public QueryDAO() {  
  11.         try {  
  12.             Class.forName("com.mysql.jdbc.Driver");  
  13.             conn = DriverManager.getConnection(  
  14.                     "jdbc:mysql://localhost:3306/testmvc", "root", "root");  
  15.         } catch (ClassNotFoundException e) {  
  16.             e.printStackTrace();  
  17.         } catch (SQLException e) {  
  18.             e.printStackTrace();  
  19.         }  
  20.     }  
  21.   
  22.     public ArrayList queryLike(String name) {  
  23.         ArrayList arrayList = new ArrayList();  
  24.         String SQL = "select * from student where name like" + "‘%" + name  
  25.                 + "%‘" + "or address like " + "‘%" + name + "%‘";  
  26.         try {  
  27.             ResultSet resultSet = conn.createStatement().executeQuery(SQL);  
  28.             while (resultSet.next()) {  
  29.                 Student student = new Student();  
  30.                 student.setId(resultSet.getInt("id"));  
  31.                 student.setName(resultSet.getString("name"));  
  32.                 student.setAge(resultSet.getInt("age"));  
  33.                 student.setSex(resultSet.getString("sex"));  
  34.                 student.setAddress(resultSet.getString("address"));  
  35.                 arrayList.add(student);  
  36.             }  
  37.         } catch (SQLException e) {  
  38.             e.printStackTrace();  
  39.         }  
  40.         return arrayList;  
  41.     }  
  42.   
  43.     public static void close(Connection conn) {  
  44.         if (conn != null) {  
  45.             try {  
  46.                 conn.close();  
  47.             } catch (SQLException e) {  
  48.                 e.printStackTrace();  
  49.             }  
  50.             conn = null;  
  51.         }  
  52.     }  
  53.   
  54.     public static void close(Statement stmt) {  
  55.         if (stmt != null) {  
  56.             try {  
  57.                 stmt.close();  
  58.             } catch (SQLException e) {  
  59.                 e.printStackTrace();  
  60.             }  
  61.             stmt = null;  
  62.         }  
  63.     }  
  64. }  



 

 

    1. drop database testmvc;  
    2. create database testmvc;  
    3. use testmvc;  
    4. create table student (  
    5.     id int not null primary key auto_increment,  
    6.     name varchar(10),  
    7.     age int,  
    8.     sex varchar(2),  
    9.     address varchar(50)  
    10.     );  
    11.         insert into student values(null,‘张三‘,20,‘男‘,‘北京市东城区天安门‘);  
    12.         insert into student values(null,‘李四‘,21,‘男‘,‘上海市东城区天安门‘);  
    13.         insert into student values(null,‘王五‘,22,‘男‘,‘天津市东城区天安门‘);  
    14.         insert into student values(null,‘赵六‘,23,‘男‘,‘南京市东城区天安门‘);  
    15.         insert into student values(null,‘孙七‘,24,‘男‘,‘福建省东城区天安门‘);  
    16.         insert into student values(null,‘钱八‘,25,‘男‘,‘长沙市东城区天安门‘);  
    17.         insert into student values(null,‘刘九‘,26,‘男‘,‘武汉市东城区天安门‘);  

使用MVC模式开发程序,完成数据的模糊查询【转】,布布扣,bubuko.com

使用MVC模式开发程序,完成数据的模糊查询【转】

标签:des   style   blog   http   java   使用   os   strong   

原文地址:http://www.cnblogs.com/HYanqing/p/3880357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!