struts2簡單入門-配置文件說明
阿新 • • 發佈:2017-08-05
default fig 常用 res ftw apach 入門 eth 核心
- struts.xml
- 作用:配置struts中的action對象.
- 基本文件格式:
-
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <!-- 各種標簽 --> </struts>
- 常用標簽
-
1 <package name
-
- struts.properties配置文件
- 作用:配置struts2框架的各種常量,和信息
- 1
- web.xml 中的配置信息-也稱核心控制器
- 配置如下
-
<filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </
struts2簡單入門-配置文件說明