2013-04-27期-加入Struts2.3.14框架

Struts2官网

Struts2官网下载地址

下载完成后加入struts2的jar包到工程,如图1所示

配置web.xml

 <!-- 加载配置 -->
  <filter> 
    <filter-name>struts2</filter-name> 
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> 
    <init-param>  
        <param-name>config</param-name>  
        <param-value>struts.xml</param-value>  
    </init-param>  
  </filter> 
  <!-- 拦截所有请求 -->
  <filter-mapping> 
    <filter-name>struts2</filter-name> 
    <url-pattern>/*</url-pattern> 
  </filter-mapping>

配置struts.xml 位于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.devMode" value="false"/>
    <!-- 配置编码格式为UTF-8 -->
    <constant name="struts.i18n.encoding" value="UTF-8"/>
    <!-- URL后自动加入参数不启用 -->
    <constant name="struts.url.includeParams" value="none" /> 
    <!-- 不启用Struts2自带主题样式 -->
    <constant name="struts.ui.theme" value="simple"/>
    <!-- 加入Struts默认加载的文件 -->
    <include file="struts-default.xml"/>  
    <include file="struts-plugin.xml" />  
</struts>

你可能感兴趣的:(struts2)