创建一个struts项目的初始配置

1、创建一个dynamic Web Project。
2、将struts2框架的jar包拷贝到项目的WebContent/WEB-INF/lib目录下。
3、拷贝servlet-api.jar包到项目的WebContent/WEB-INF/lib目录下。这个jar包在tomcat的lib文件夹中可以找到。
4、刷新eclipse中的项目,java build path中导入WebContent/WEB-INF/lib目录下的这些jar包。
5、配置web.xml,添加filter和filter-mapping

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
	<display-name>PedigreeManage</display-name>
	<welcome-file-list>
		<welcome-file>index.html</welcome-file>
		<welcome-file>index.htm</welcome-file>
		<welcome-file>index.jsp</welcome-file>
		<welcome-file>default.html</welcome-file>
		<welcome-file>default.htm</welcome-file>
		<welcome-file>default.jsp</welcome-file>
	</welcome-file-list>
	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>
			org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
		</filter-class>
	</filter>
 	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
</web-app>

 6、在src目录下创建struts.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>

	<constant name="struts.action.extension" value="do,action" />
    <!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->
    <constant name="struts.serve.static.browserCache" value="false" />
    <!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 -->
    <constant name="struts.configuration.xml.reload" value="true" />
    <!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->
    <constant name="struts.devMode" value="false" />
    <!-- 默认的编码 -->
    <constant name="struts.i18n.encoding" value="UTF-8"/>

</struts>

 7、为项目创建一个测试页面,如在WebContext下创建login.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>族谱-登陆</title>
	</head>
	<body>

	</body>
</html>

 

 8、Eclipse中为项目创建server

①右击项目->Run as->Run on server

②选择tomcat,创建service,点击next

③选择要发布的项目,点击finish

④在services窗口中选择service,然后选择service下的项目,启动项目。

猜你喜欢

转载自wang-hui1989.iteye.com/blog/2155026