package servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import bean.Hero; import dao.HeroDAO; /** * @author 作者: guya * description: */ public class HeroAddServlet extends HttpServlet { protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String name=request.getParameter("name"); int hp=Integer.parseInt(request.getParameter("hp")); Hero hero=new Hero(); hero.setName(name); hero.setHp(hp); new HeroDAO().add(hero); response.sendRedirect("listHero"); } }
最近下载更多
liuliuyl LV3
2023年6月17日
小顾顾顾顾顾 LV4
2023年6月7日
ZDM133 LV2
2023年5月22日
人生三重奏 LV1
2022年12月21日
无名氏111 LV33
2022年12月16日
1379585889 LV11
2022年12月14日
bigstone1 LV1
2022年11月9日
微信网友_6208827097387008 LV1
2022年11月7日
sdkjfhg LV1
2022年3月6日
guanxiaopeng LV1
2021年12月21日