資源簡介
一個簡易的庫存商品管理系統使用JSP+Servlet+數據庫
(1)、需求描述:
①管理員登錄
②列出所有庫存商品的名稱、規格、庫存件數、單價
③可以對庫存記錄做增加、修改和刪除。
④點“新加商品”按鈕,跳到下頁進行新加商品
⑤刪除前需要用戶確認
⑥在每行的修改鏈接中,鏈接到本行記錄的修改頁面
⑦當“庫存件數”少于10件的時候,數字顯示為紅色
⑧商品增加(修改)成功后,頁面回到管理員查看庫存頁,并刷新列表數據;
⑨所有字段均為必填項,件數、單價為數字項,提交數據之前,應進行充分的檢查;
⑩保存記錄的時候,程序檢測如果該件商品已有記錄(即:名稱、規格、單價都相同的商品),則在原有庫存上累加,否則
代碼片段和文件信息
package?com.qbsp.servlet;
import?java.io.IOException;
import?java.sql.Connection;
import?java.sql.PreparedStatement;
import?java.sql.ResultSet;
import?java.sql.Statement;
import?javax.servlet.RequestDispatcher;
import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?com.qbsp.util.DBUtil;
public?class?AddProduct?extends?HttpServlet?{
private?Connection?conn;
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
request.setCharacterEncoding(“gbk“);
response.setContentType(“text/html;charset=gbk“);
String?name?=?request.getParameter(“name“);
String?norms?=?request.g
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2013-08-16?18:08??Product\
?????文件???????????0??2020-08-05?14:54??Product\2020.txt
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\
?????文件?????????484??2013-08-15?13:55??Product\ProductManageSystem\.classpath
?????目錄???????????0??2020-08-05?16:17??Product\ProductManageSystem\.myeclipse\
?????文件?????????330??2013-08-15?10:32??Product\ProductManageSystem\.myme
?????文件????????1425??2013-08-15?10:55??Product\ProductManageSystem\.project
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\.settings\
?????文件?????????500??2013-08-15?10:32??Product\ProductManageSystem\.settings\.jsdtscope
?????文件?????????330??2013-08-15?10:32??Product\ProductManageSystem\.settings\org.eclipse.jdt.core.prefs
?????文件??????????49??2013-08-15?10:32??Product\ProductManageSystem\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2013-08-15?10:32??Product\ProductManageSystem\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\me
?????文件??????????36??2013-08-15?10:32??Product\ProductManageSystem\WebRoot\me
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\classes\
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\
?????文件????????3026??2013-08-15?18:14??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\AddProduct.class
?????文件????????4097??2013-08-16?17:45??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\UserLogin.class
?????文件????????2965??2013-08-15?15:51??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\UserRegister.class
?????文件????????3117??2013-08-16?10:24??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\ViewProduct.class
?????文件????????2045??2013-08-16?10:44??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\deleProduct.class
?????文件????????2059??2013-08-16?13:35??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\updateProduct.class
?????目錄???????????0??2013-08-16?18:07??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\
?????文件????????1402??2013-08-15?14:10??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\DBUtil.class
?????文件????????1479??2013-08-15?17:25??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\Product.class
?????文件?????????734??2013-08-15?14:46??Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\User.class
?????目錄???????????0??2020-08-05?16:17??Product\ProductManageSystem\WebRoot\WEB-INF\lib\
............此處省略25個文件信息
- 上一篇:JAVA簡歷更新,三年工作經驗.doc
- 下一篇:nc6.5安裝包.zip
評論
共有 條評論