SSH网站构建基本方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSH网站构建基本方法相关的知识,希望对你有一定的参考价值。
1.添加struts2.1。Struts2核心库。
2.编写jsp页面添加action,struts.xml添加映射。
3.运行测试。
4.添加spring3.0。Spring 3.0 Core Lib、Spring 3.0 Web Lib。
打开配置文件Web.xml,添加如下配置行。
<!-- Spring 配置和监听start -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/application*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- end -->
5.添加引用Struts2 Spring Libraries。
6.根据控制台提示添加各种jar包到lib。
7.ApplicationContext.xml添加映射,struts.xml修改映射。
1)出现There is no Action mapped for namespace [/] and action name [Login] associated with context path [/eprint]错误
检查struts.xml和applicationContext.xml;
确保在WEB-INF下才是classes中的struts.xml文件与src下的struts.xml一致
以上是关于SSH网站构建基本方法的主要内容,如果未能解决你的问题,请参考以下文章
通过jenkins构建发布普通网站(jenkins+nginx+svn)