J2EE-UP
j2ee struts spring hibernate
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 24, comments - 25, trackbacks - 0
<
2008年1月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
html+css(1)
Java(7)
javascript(1)
POI-Excel/Word(3)
Struts2.x(8)
web(4)
随笔档案
2011年8月 (1)
2011年7月 (1)
2011年4月 (4)
2010年6月 (1)
2009年4月 (1)
2009年3月 (1)
2009年2月 (1)
2008年12月 (4)
2008年11月 (2)
2008年2月 (5)
2008年1月 (3)
文章档案
2010年11月 (1)
搜索
最新评论
1. re: Struts2自定义标签
大概看懂了,跟那个s标签一样用法,只是这里是自己在定义一个标签来用就是了。
--问问
2. re: web中使用POI的例子[未登录]
3333
--a
3. re: 输出流下载文件[未登录]
asdf
--aaa
4. re: struts2.0的标签库(简介)
楼主,爱死你了。总结的好啊。
--windkiller
5. re: Struts2自定义标签[未登录]
写得什么啊!乱七八糟的。
--doudou
阅读排行榜
1. struts2.0的标签库(简介)(18041)
2. struts2日期标签小结(8538)
3. Struts2自定义标签(7082)
4. web中使用POI的例子(4562)
5. POI简单应用(word,excel)(3441)
评论排行榜
1. struts2.0的标签库(简介)(10)
2. POI简单应用(word,excel)(5)
3. Struts2自定义标签(3)
4. web中使用POI的例子(2)
5. struts2日期标签小结(2)
struts.xml的配置简介
<!
DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"
>
<
struts
>
<!--
include节点可以将每个功能模块独立到一个xml配置文件中然后引用
-->
<
include
file
="struts-default.xml"
></
include
>
<!--
package提供了将多个Action组织为一个模块的方式
package的名字必须是唯一的 package可以扩展 当一个package扩展自
另一个package时该package会在本身配置的基础上加入扩展的package
的配置 父package必须在子package前配置
-->
<
package
name
="com"
extends
="struts-default"
namespace
="/test"
>
<
interceptors
>
<!--
定义拦截器
-->
<
interceptor
name
="token"
class
="com.token"
/>
<!--
定义拦截器栈
-->
<
interceptor-stack
name
="defaultStack"
>
<
interceptor-ref
name
="token"
/>
</
interceptor-stack
>
</
interceptors
>
<!--
定义默认的拦截器,如果Action中引用了其它的拦截器 默认的拦截器将无效
-->
<
default-interceptor-ref
name
="token"
/>
<!--
全局results配置
-->
<
global-results
>
<
result
name
="input"
>
/error.jsp
</
result
>
</
global-results
>
<!--
Action配置 一个Action可以被多次映射
-->
<
action
name
="hello"
class
="com.HelloWorld"
>
<!--
引用拦截器
-->
<
interceptor-ref
name
="token"
/>
<!--
节点配置
-->
<
result
name
="success"
type
="dispatcher"
>
/talk.jsp
</
result
>
<!--
参数设置
-->
<
param
name
="url"
>
http://www.blogjava.net
</
param
>
</
action
>
</
package
>
</
struts
>
posted on 2008-01-15 16:32
Jarry
阅读(587)
评论(0)
编辑
收藏
所属分类:
Struts2.x
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
struts2 下载文件时struts.xml的配置
struts2日期标签小结
struts2的struts.properties详解
一个form多个submit的action配置
Struts2自定义标签
struts.xml的配置简介
struts2.0的标签库(简介)
实现一个简单的Struts2.0