JavaWeb中MVC的使用--以管理系统举例
开发环境:JavaSE1.7、JavaEE7.0、JSTL1.2.2、Web2.3、MySQL5.5.28
系统分析与功能设计:
本系统实现商品信息的管理,应包括以下几个功能:
商品信息列表:列出所有商品信息,并提供对指定商品信息的修改和删除接口
添加商品信息:向数据库中添加一条商品信息
编辑商品信息:修改数据库中已有的商品信息
删除商品信息:删除指定商品的信息
异常处理:跳转到错误页面并显示异常信息
MVC框架模式设计:
(1)模型:Proccess.java完成商品信息的在数据库中的增删改查,将要处理的商品信息封装到Goods.java中。
(2)控制器:Controller.java完成区别客户端不同业务请求,根据不同的参数进行不同的操作。
(3)视图:list.jsp显示商品信息列表,同时提供增加、编辑和删除链接。
edit.jsp添加或编辑信息
error.jsp显示异常信息
除此以外添加监听器,当应用关闭时关闭与数据库的链连接。
项目结构:
效果截图:
注意事项:
(1)在Web项目中导入MySQL架包要把jar复制到WebRoot/WEB-INF/lib下。
(2)Web2.3中使用JSTL时需要在jsp上加这两句:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page isELIgnored="false" %>
(3)PreparedStatement能够对sql语句进行预编译,预编译后能够提高数据库sql语句执行效率。用于处理动态SQL语句,在执行前会有一个预编译过程,这个过程是有时间开销的,虽然相对数据库的操作,该时间开销可以忽略不计,但是PreparedStatement的预编译结果会被缓存,下次执行相同的预编译语句时,就不需要编译,只要将参数直接传入编译过的语句执行代码
中就会得到执行,所以,对于批量处理可以大大提高效率。
Proccess.java
package mvc.model; import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List; public class Proccess {
private static Connection conn; private void getConn() throws ClassNotFoundException, SQLException{
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/goods?characterEncoding=UTF-8",
"root", "123456"); // url user passwd
} private Goods fill(ResultSet rs) throws SQLException{
Goods gd = new Goods();
gd.setHh(rs.getString("hh"));
gd.setName(rs.getString("name"));
gd.setNum(rs.getString("number"));
return gd;
} public List<Goods> list() throws ClassNotFoundException, SQLException{
List<Goods> gds = new ArrayList<Goods>();
if(conn == null){
getConn();
}
Statement statement = conn.createStatement();
ResultSet rs = statement.executeQuery("select * from goods");
while(rs.next()){
gds.add(fill(rs));
}
rs.close();
statement.close();
return gds;
} public Goods findByHH(String hh) throws ClassNotFoundException, SQLException{
Goods gd = null;
if(conn == null){
getConn();
}
PreparedStatement pstatement = conn.prepareStatement("select * from goods where hh= ?");
pstatement.setString(1, hh);
ResultSet rs = pstatement.executeQuery();
if(rs.next()){
gd = fill(rs);
}
return gd;
} public void save(Goods gd, String oldHh) throws ClassNotFoundException, SQLException{
if(conn == null){
getConn();
}
String sql = "update goods set hh=?,name=?,number=? where hh=?";
if(oldHh == null || "".equals(oldHh)){
sql = "insert into goods set hh=?,name=?,number=?";
}
PreparedStatement pstatement = conn.prepareStatement(sql);
pstatement.setString(1, gd.getHh());
pstatement.setString(2, gd.getName());
pstatement.setString(3, gd.getNum());
if(oldHh != null && !("".equals(oldHh))){
pstatement.setString(4, oldHh);
}
pstatement.executeUpdate();
} public void delete(String Hh) throws ClassNotFoundException, SQLException{
if(conn == null){
getConn();
}
String sql = "delete from goods where hh=?";
PreparedStatement pstatement = conn.prepareStatement(sql);
pstatement.setString(1, Hh);
pstatement.executeUpdate();
} public static void conClose(){
if(conn != null){
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
Proccess
Controller.java
package mvc.controller; import java.io.IOException;
import java.util.List; import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import mvc.model.Goods;
import mvc.model.Proccess; public class Controller extends HttpServlet {
private static final long serialVersionUID = 1L; public Controller() {
super();
} public void destroy() {
super.destroy();
} public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
} public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setCharacterEncoding("utf-8");
String action = request.getParameter("action");
Proccess pc = new Proccess();
try {
if ("list".equals(action)) {
List<Goods> goods = pc.list();
String test = "Test";
request.setAttribute("goods", goods);
request.setAttribute("test", test);
request.getRequestDispatcher("list.jsp").forward(request, response);
} else if ("add".equals(action)) {
request.getRequestDispatcher("edit.jsp").forward(request, response);
} else if ("edit".equals(action)) {
String hh = request.getParameter("hh");
Goods gds = pc.findByHH(hh);
request.setAttribute("gds", gds);
request.getRequestDispatcher("edit.jsp").forward(request, response); } else if ("save".equals(action)) {
String oldHh = request.getParameter("oldHh");
String hh = request.getParameter("hh");
String name = request.getParameter("name");
String num = request.getParameter("num"); Goods gds = new Goods();
gds.setHh(hh);
gds.setName(name);
gds.setNum(num);
pc.save(gds, oldHh);
response.sendRedirect("ctrl?action=list"); } else if ("delete".equals(action)) {
String hh = request.getParameter("hh");
pc.delete(hh);
response.sendRedirect("ctrl?action=list");
}
} catch (Exception e) {
request.setAttribute("errMsg", e.getMessage());
request.getRequestDispatcher("error.jsp").forward(request, response);
e.printStackTrace();
}
} public void init() throws ServletException {
}
}
Controller
JavaWeb中MVC的使用--以管理系统举例的更多相关文章
- javaWeb中MVC的编程思想示例
没有学习MVC之前我只写了一个Servlet类(Note_List.java),分层之后,我将这个类分成了5个类(NoteDao.java,,NoteDaoImpl.java,,NoteService ...
- JavaWeb中监听器+过滤器+拦截器区别、配置和实际应用
JavaWeb中监听器+过滤器+拦截器区别.配置和实际应用 1.前沿上一篇文章提到在web.xml中各个元素的执行顺序是这样的,context-param-->listener-->fil ...
- javaWeb中的文件上传下载
在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传和下载功能的实现. 对于文件上传,浏览器在上传的过程中是将文件以流的形式提交到服务器端的,如果直接使用 ...
- MVC模式学习--雇员管理系统项目开发
1, 项目开发,使用原型开发, ① 开发流程: 需求分析->设计阶段->编码阶段->测试阶段->发布阶段/维护阶段 需求阶段:PM/项目经理 对客户 设计阶段:技术人员(架构师 ...
- JavaWeb笔记——MVC设计模式和JavaWeb经典三层架
1 MVC设计模式 MVC设计模式 MVC模式(Model-View-Controller)是软件工程中的一种软件架构模式,把软件系统分为三个基本部分:模型(Model).视图(View)和控制器(C ...
- Odoo domain 中的 like, ilike, =like, =ilike 举例说明【转】
Odoo domain 中的 like, ilike, =like, =ilike 举例说明 Odoo domain 操作符使用场景非常多,很多小伙伴被 like, ilike, =like, =il ...
- PHP实例开发(3)PHP中MVC学习之ThinkPHP
PHP中MVC学习之ThinkPHP 1.什么是MVC MVC本来是存在于Desktop程序中的,M是指数据模型,V是指用户界面,C则是控制器.使用MVC的目的是将M和V的实现代码分离 MVC是一个设 ...
- 在JavaWeb中使用Log4j步骤
在JavaWeb中使用Log4J指南.每次在开始写一个项目的时候都忘记Log4J如何配置.所以写个步骤,作为记录. 第一步 下载Log4J jar包 从Apache Logging Services ...
- 在Javaweb中使用Scala
Java 是一门比较优秀的编程语言, 其最大功劳是建立非常繁荣的JVM平台生态.不过 Java 语法比较麻烦,写过 C, Python 的人总是想使用简洁的语法,又希望利用上 Java 平台的强大,因 ...
随机推荐
- url出现特殊字符,需要进行编码
1) 网络访问请求:中文空格字符编码/解码 stringByAddingPercentEscapesUsingEncoding(只对 `#%^{}[]|\"<> 加空格共14个字 ...
- RazorHelper.cs
完整版 RazorHelper.cs using System; using System.Collections; using System.Collections.Generic; using S ...
- Day2-VIM(一):移动
基础 字符移动 k 上移 k h 左移 h l l 右移 j j 下移 你也可以使用键盘上的方向键来移动,但这么做h j k l的存在就失去了意义 之所以使用h j k l来控制方向,其主要目的是让你 ...
- 第十四届华中科技大学程序设计竞赛决赛同步赛 A - Beauty of Trees
A - Beauty of Trees 题意: 链接:https://www.nowcoder.com/acm/contest/119/A来源:牛客网 Beauty of Trees 时间限制:C/C ...
- L2-005. 集合相似度(set使用)
L2-005. 集合相似度 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 给定两个整数集合,它们的相似度定义为:Nc/Nt*1 ...
- eclipse插件安装(个人版)
1.Eclipse 安装反编译插件jadclipse http://jingyan.baidu.com/article/3f16e003c857082590c1036f.html 2.MyEclips ...
- windows黑科技-记录dns log
昨天看到袁哥微博,看到了这篇,今天测试了一下,记录下来: The DNS Client service does not log by default. However, if a file name ...
- leetcode633
用开方的思想来解题. bool judgeSquareSum(int c) { int h = pow(c, 0.5); ; i <= h; i++) { ), 0.5); if (left - ...
- nginx注册成服务
http://blog.csdn.net/t37240/article/details/51727563
- SSH简单搭建
本项目使用Struts2+spring3+hibernate3: 第一步:引入jar包,具体需要哪些包根据实际情况加入.注意:把jar包导入后需要对所有包Add to Build Path;然后对工程 ...