悟生慧

 

2011年7月4日

如何为应用指定多个struts配置文件

摘要: 如何为应用指定多个struts配置文件在大部分应用里,随着应用规模的增加,系统中Action的数量也会大量增加,导致struts.xml配置文件变得非常臃肿,为了避免struts.xml文件过于庞大、臃肿,提高Struts.xml文件的可读性,我们可以将一个struts.xml配置文件分解成多个配置文件,然后再struts.xml文件中包含其他配置文件。通过<include>元素指定多个配置文件 <struts> <include file="department.xml"/> 一个模块使用一个配置文件 <include file= 阅读全文

posted @ 2011-07-04 22:25 悟生慧 阅读(1329) 评论(0) 推荐(0) 编辑

Struts2中Action各种转发类型

摘要: Struts2:Action中result的各种转发类型:内部请求转发dispatcher(默认值)redirect、redirectAction、plainText1.redirect是重定向到某个路径、视图<action name="redirect">/***重定向 <result type="redirect">/employeeAdd.jsp?username=${username}</result></action>URLEncoder.encode("传智播客"," 阅读全文

posted @ 2011-07-04 21:28 悟生慧 阅读(15018) 评论(0) 推荐(1) 编辑

导航