综合实战:
实现利用servlet+service+dao实现查询所有,对象,增删改,
t_house(int no,String housename,Double height)
步骤1:创建maven工程
步骤2:创建工程包entity,dao,util,service,servlet
步骤3:引入pom依赖
【引入mysql依赖,引入servlet依赖,jstl依赖】
步骤4:数据库/表 创建
步骤5:创建实体类
步骤6:BaseDao工具类
步骤7:HouseDao接口
步骤8:HouseDaoImpl
步骤9:HouseService
步骤10:HouseServiceImpl
步骤11-1:web.xml
步骤11-2 HouseServlet
步骤11-3 引入jstl表达式并修改jsp
index.jsp
add.jsp
find.jsp
update.jsp
步骤12:测试
主页面
添加页面
修改页面
查询页面