欢迎来到天天文库
浏览记录
ID:14329478
大小:76.50 KB
页数:29页
时间:2018-07-28
《ssh框架搭建详细过程》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、ssh框架搭建详细过程集成SSH框架详细过程.2010-08-1316:0897人阅读评论(0)收藏举报这两天在myeclipse中搭建了SSH的框架,现把详细的搭建整合过程记录如下为了验证整合后的正确性,我在这里实现了一个小功能,即通过index.jsp页面提交请求,查询数据库中存有多少件商品,如果查询成功,则在控制台打印商品的件数,并返回到成功页面success.jsp,反之,返回到error.jsp。数据库中只有一个表goods。1.建立webproject在src目录下新建包com.action,com.service,com.service.impl,com.da
2、o,com.dao.impl,com.po各个包要存放的类相信通过包名可以明白,在com.po包中新建po类Goods.java在WebRoot下新建文件夹pages,用以存放success.jsp和error.jsp,index.jsp直接在WebRoot目录下index.jsp:2.引入struts2首先需要导入strut
3、s2的几个必须包,它们在struts2的发行包lib目录下都可以找到xwork-core-2.1.6.jarstruts2-core-2.1.8.1.jarfreemarker-2.3.15.jarcommons-fileupload-1.2.1.jar修改web.xml文件,增加struts2配置4、a-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">struts2org.apache.struts2.dispatcher.FilterDispatcherstru5、ts2/*index.jsp在src目录下新建struts.xml,内容如下6、""http://struts.apache.org/dtds/struts-2.0.dtd">/pages/success.jsp/pages/err.jsp7、>在struts.xml中配置好action后,接着就在com.action包中新建类GoodsAction,代码清单如下:packagecom.action;publicclassGoodsAction{privateGoodsInsertServicegoodsInsertActionService;//见srping配置publicStringselectGood(){Stringresult=goodsInsertActionService.selectGoods();returnresult;}publi
4、a-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">struts2org.apache.struts2.dispatcher.FilterDispatcherstru
5、ts2/*index.jsp在src目录下新建struts.xml,内容如下
6、""http://struts.apache.org/dtds/struts-2.0.dtd">/pages/success.jsp/pages/err.jsp
7、>在struts.xml中配置好action后,接着就在com.action包中新建类GoodsAction,代码清单如下:packagecom.action;publicclassGoodsAction{privateGoodsInsertServicegoodsInsertActionService;//见srping配置publicStringselectGood(){Stringresult=goodsInsertActionService.selectGoods();returnresult;}publi
此文档下载收益归作者所有