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 平台的强大,因 ...
随机推荐
- 使用PowerShell在Azure China创建Data Warehouse
微软的Azure Data Warehouse是基于MPP架构的分布式系统: Control Node负责管理系统和接受用户的请求,Compute Node负责计算. 目前在国内Azure Data ...
- 蓝桥杯 算法训练 ALGO-124 数字三角形
算法训练 数字三角形 时间限制:1.0s 内存限制:256.0MB 问题描述 (图3.1-1)示出了一个数字三角形. 请编一个程序计算从顶至底的某处的一条路 径,使该路径所经过的数字的总和 ...
- NB-LOT 科普
最全科普!你一定要了解的NB-IoT 2017-06-19 21:04物联网/操作系统/科普 工信部下发通知推动150万NB-IoT基站落地.NB-IoT汹涌而来.很多网友要求雇佣军科普一篇NB-Io ...
- DCloud-流应用:杂项
ylbtech-DCloud-流应用:杂项 1.返回顶部 2.返回顶部 3.返回顶部 4.返回顶部 5.返回顶部 6.返回顶部 7.返回顶部 8.返回顶部 9.返回 ...
- 50 states of America
美国州名 州名英文 州名音标 简写 首府 首府 阿拉巴马州 Alabama [ˌæləˈbæmə] AL 蒙哥马利 Montgomery[mənt'gʌməri] 阿拉斯加州 Alaska [ ...
- windows黑科技-记录dns log
昨天看到袁哥微博,看到了这篇,今天测试了一下,记录下来: The DNS Client service does not log by default. However, if a file name ...
- cURL使用教程及实例演示
curl里面的函数不多,主要有: curl_init — 初始化一个CURL会话curl_setopt — 为CURL调用设置一个选项curl_exec — 执行一个CURL会话curl_close ...
- java 多线程系列---JUC原子类(五)之AtomicLongFieldUpdater原子类
AtomicLongFieldUpdater介绍和函数列表 AtomicLongFieldUpdater可以对指定"类的 'volatile long'类型的成员"进行原子更新.它 ...
- 12-01Js表单验证和JsWindow
一.表单验证form 1.创建一个新的表单: <form id="id是唯一的,不可重复" name=“可重复”,method="post/get",ac ...
- xcode 编译报错“Cannot create __weak reference in file using manual reference counting”解决办法<转>
http://blog.csdn.net/ouq68/article/details/51003876 解决方法: Please set ‘Weak References in Manual Reta ...