2012年10月15日
摘要: 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE struts PUBLIC 3 "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" 4 "http://struts.apache.org/dtds/struts-2.0.dtd"> 5 6 <struts> 7 <constant name="struts.devMode&qu 阅读全文
posted @ 2012-10-15 16:48 elleniou 阅读(179) 评论(0) 推荐(0) 编辑
摘要: //index.jsp 1 <?xml version="1.0" encoding="GB18030" ?> 2 <%@ page language="java" contentType="text/html; charset=GB18030" 3 pageEncoding="GB18030"%> 4 5 <% String context = request.getContextPath(); %> 6 7 <!DOCTYPE html PUBLIC 阅读全文
posted @ 2012-10-15 16:21 elleniou 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 1 namespace决定了action的访问路径,默认为"",可以接收所有路径的action2 namespace可以写为/,或者/xxx,或者/xxx/yyy,对应的action访问路径为/index.action,3 /xxx/index.action,或者/xxx/yyy/index.action.4 namespace最好也用模块来进行命名 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE struts PUBLIC 3 "-//Apach 阅读全文
posted @ 2012-10-15 15:19 elleniou 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: 配置文件主要有Struts.xmlweb.xml其中Stuts.xml 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE struts PUBLIC 3 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" 4 "http://struts.apache.org/dtds/struts-2.3.dtd"> 5 6 <struts> 7 8 < 阅读全文
posted @ 2012-10-15 15:10 elleniou 阅读(257) 评论(0) 推荐(0) 编辑