欢迎光临
我们一直在努力

web.xml和struts-config.xml的配置-JSP教程,Java与XML

建站超值云服务器,限时71元/月

struts应用程序的配置:

上篇文章讲了controller,但是我发现对于jakarta struts中的其它内容已经遗忘殆尽,古人云:温故而知新,就让我对前边几章作一下复习

这里要配置的文件有两个,一个是web.xml,另一个是struts-config.xml

一、为struts配置web.xml

1,配置actionservlet(only one),使其接收应用程序收到的所有请求

分为两步,a:使用servlet元素配置servlet实例,做servlet-mapping

<web-app>

<servlet>

<servlet-name>storefront</servlet-name>

<servlet-class>完全限定的类名</servlet-class>

</servlet>

<servlet-mapping>

<servlet-name>storefront</servlet-name>

<url-pattern>*.do</url-pattern>

</servlet-mapping>

</web-map>

2,配置初始化参数:init-param,以name/value表示<param-name><param-value>

config :默认为/web-inf/struts-config.xml

config/sub1:config/… 从附加的struts配置文件中加在资程序sub1

debug:servlet的调试detail

detail:digester的调试detail

converthack

3,<taglib>使用struts提供的标记库时必须配置包括

<taglib-uri>识别web应用程序所使用的标记库,必须是有效的

<taglib-location>指定了标记库描述文件的位置

4,<welcome-file-list>配置在web app中输入有效的,但不完整的url所使用的default resource;不使用servlet映射

<welcome-file>起始和结束都没有/符号

5,<error-page>

(<error-code> <location>)

<<exception-type><location>

</error-page>

二、struts配置文件

applicationconfig: 包含了struts配置文件中的所有信息

1, <data-source>

<set-property property=““ value=““/>

<data-source>

2,<form-beans>

<form-bean name=“loginform“ type=“完全限定的类名,是actionform的子类“>

<form-property name=““ type=““/>

</form-bean>

<form-bean

</form-beans>

3,<global-exceptions>

4,<global-forwards>

作者blog:http://blog.csdn.net/wjsfr/

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » web.xml和struts-config.xml的配置-JSP教程,Java与XML
分享到: 更多 (0)

相关推荐

  • 暂无文章