⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 roomapply_sl.java

📁 JSP移动商品管理平台源代码.........
💻 JAVA
字号:
package imis_hous.servlet;

import imis_hous.com.bean.RoomApplyAssign;
import imis_hous.com.factory.SessionFactoryDAO;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class RoomApply_sl extends HttpServlet {

	/**
	 * Constructor of the object.
	 */
	public RoomApply_sl() {
		super();
	}

	/**
	 * Destruction of the servlet. <br>
	 */
	public void destroy() {
		super.destroy(); // Just puts "destroy" string in log
		// Put your code here
	}

	/**
	 * The doGet method of the servlet. <br>
	 *
	 * This method is called when a form has its tag value method equals to get.
	 * 
	 * @param request the request send by the client to the server
	 * @param response the response send by the server to the client
	 * @throws ServletException if an error occurred
	 * @throws IOException if an error occurred
	 */
	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
this.doPost(request, response);
		
	}

	/**
	 * The doPost method of the servlet. <br>
	 *
	 * This method is called when a form has its tag value method equals to post.
	 * 
	 * @param request the request send by the client to the server
	 * @param response the response send by the server to the client
	 * @throws ServletException if an error occurred
	 * @throws IOException if an error occurred
	 */
	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		
		String getid = request.getParameter("id");
		
		if(getid.equals("add")){
			boolean succ = false;
			RoomApplyAssign roomApply= new RoomApplyAssign();
			roomApply.setAppBy(request.getParameter("J_AppBy"));
			roomApply.setAppDes(request.getParameter("J_AppDes"));
			roomApply.setAssiBy(request.getParameter("J_AssiBy"));
			roomApply.setAssiDesc(request.getParameter("J_AssiDesc"));
			roomApply.setAssiIs(request.getParameter("J_AssiIs"));
			roomApply.setAssiType(request.getParameter("J_AssiType"));
			roomApply.setBuildingNu(request.getParameter("J_BuildingNu"));
			roomApply.setMemo(request.getParameter("J_Memo"));
			roomApply.setReMark(request.getParameter("J_ReMark"));
			roomApply.setRoomAssignExcuter(request.getParameter("J_RoomAssignExcuter"));
			roomApply.setUseDept(request.getParameter("J_UseDept"));
			roomApply.setRoomUser(request.getParameter("J_RoomUser"));
			roomApply.setRoomNu(request.getParameter("J_RoomNu"));
			roomApply.setAppDate(request.getParameter("J_AppDate"));
			roomApply.setRoomAssignDate(request.getParameter("J_RoomAssignDate"));
			roomApply.setUseDate(request.getParameter("J_UseDate"));
			succ = SessionFactoryDAO.getRommApplyAssignDAOInstance().add(roomApply);
			if(succ)
				request.getRequestDispatcher("../success.jsp").forward(request, response);
			else
				request.getRequestDispatcher("../fail.jsp").forward(request, response);
		}
		else if(getid.equals("select")){
			
			int J_UseDept = Integer.parseInt(request.getParameter("J_UseDept"));
			String roomAssignDate = request.getParameter("J_RoomAssignDate");
			String useDate = request.getParameter("J_UseDate");
			String roomAssignDateed=request.getParameter("J_RoomAssignDateed");
			List list = SessionFactoryDAO.getRommApplyAssignDAOInstance().getSelect(J_UseDept,roomAssignDate,useDate,roomAssignDateed);
			if(list!=null){
				request.setAttribute("RoomApplyAssign", list);
				request.getRequestDispatcher("/imis_hous/Check/RoomApplyAssign_cx.jsp").forward(request, response);
			}
			else
				request.getRequestDispatcher("../fail.jsp").forward(request, response);
		}
		boolean flag=false;
		
		if (getid.equals("delete")) {
			String RoomAppId=request.getParameter("RoomAppId");
			int id=Integer.parseInt(RoomAppId);
			flag=SessionFactoryDAO.getRommApplyAssignDAOInstance().del(id);
			if (flag) {
				request.getRequestDispatcher("../delSuccess.jsp").forward(request, response);
			} else {
				request.getRequestDispatcher("../delFail.jsp").forward(request, response);
			}
		}
		
	}

	/**
	 * Initialization of the servlet. <br>
	 *
	 * @throws ServletException if an error occure
	 */
	public void init() throws ServletException {
		// Put your code here
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -