heting
BlogJava
::
首頁
::
新隨筆
::
聯(lián)系
::
聚合
::
管理
::
40 隨筆 :: 9 文章 :: 45 評論 :: 0 Trackbacks
<
2025年7月
>
日
一
二
三
四
五
六
29
30
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
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
留言簿
(3)
給我留言
查看公開留言
查看私人留言
隨筆分類
c#范例(4)
(rss)
java范例
(rss)
js(3)
(rss)
linux(1)
(rss)
WebSphere(1)
(rss)
數(shù)據(jù)庫(3)
(rss)
隨筆檔案
2010年10月 (1)
2010年8月 (5)
2010年3月 (2)
2009年11月 (2)
2009年9月 (1)
2009年8月 (1)
2009年7月 (2)
2009年5月 (1)
2009年4月 (3)
2009年3月 (4)
2009年2月 (1)
2009年1月 (3)
2008年12月 (2)
2008年11月 (7)
2008年10月 (4)
2008年9月 (1)
文章檔案
2008年9月 (9)
搜索
最新評論
1.?re: struts2+freemarker中防止表單的重復(fù)提交token
@51互聯(lián)云-濟(jì)南程序猿
你什么都不懂,瞎說
--人
2.?re: struts2+freemarker中防止表單的重復(fù)提交token
沒關(guān)系,大家好,什么都沒有
--人
3.?re: struts2+freemarker中防止表單的重復(fù)提交token
套頭
--人
4.?re: struts2+freemarker中防止表單的重復(fù)提交token
評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
--51互聯(lián)云-濟(jì)南程序猿
5.?re: struts1文件上傳和下載
評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
--zuidaima
閱讀排行榜
1.?struts1文件上傳和下載(21137)
2.?javax.naming.CommunicationException 的一個相關(guān)異常(已解決)(11559)
3.?自己寫的一個c#winform打印類(8516)
4.?C# 與 C++ 數(shù)據(jù)類型比較及結(jié)構(gòu)體轉(zhuǎn)換 (7224)
5.?WebSphere7.0 上部署struts2 找不到用于處理 JSP 的擴(kuò)展處理器(2991)
評論排行榜
1.?struts1文件上傳和下載(23)
2.?自己寫的一個c#winform打印類(8)
3.?struts2+freemarker中防止表單的重復(fù)提交token(6)
4.?Ireport在瀏覽器中的顯示代碼(2)
5.?EJ3.0將EJB程序和WEb程序發(fā)布到weblogic10.3是出現(xiàn)的錯誤weblogic.wsee.async.AsyncResponseBean(2)
struts1
<?
xml version="1.0" encoding="UTF-8"
?>
<!
DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd"
>
<
struts-config
>
<
form-beans
>
<
form-bean
name
="userForm"
type
="struts.form.UserForm"
/>
</
form-beans
>
<
global-exceptions
/>
<
global-forwards
>
<
forward
name
="success"
path
="/success.jsp"
/>
<
forward
name
="error"
path
="/error.jsp"
/>
</
global-forwards
>
<
action-mappings
>
<
action
attribute
="userForm"
name
="userForm"
path
="/insert"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
/>
<
action
attribute
="userForm"
name
="userForm"
path
="/login"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
>
<
forward
name
="success"
path
="/index.jsp"
/>
</
action
>
<
action
attribute
="userForm"
name
="userForm"
path
="/getAll"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
>
<
forward
name
="success"
path
="/fpage.do"
/>
</
action
>
<
action
attribute
="userForm"
name
="userForm"
path
="/update"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
/>
<
action
attribute
="userForm"
name
="userForm"
path
="/fpage"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
>
<
forward
name
="success"
path
="/userList.jsp"
/>
</
action
>
<
action
attribute
="userForm"
name
="userForm"
path
="/delete"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
/>
<
action
attribute
="userForm"
name
="userForm"
path
="/find"
scope
="request"
type
="org.springframework.web.struts.DelegatingActionProxy"
>
<
forward
name
="success"
path
="/update.jsp"
/>
</
action
>
</
action-mappings
>
<
message-resources
parameter
="struts.ApplicationResources"
/>
<
plug-in
className
="org.springframework.web.struts.ContextLoaderPlugIn"
>
<
set-property
property
="contextConfigLocation"
value
="/WEB-INF/applicationContext.xml"
/>
</
plug-in
>
</
struts-config
>
<%
@taglib uri
=
"
http://jakarta.apache.org/struts/tags-bean
"
prefix
=
"
bean
"
%>
<%
@taglib uri
=
"
http://jakarta.apache.org/struts/tags-html
"
prefix
=
"
html
"
%>
<%
@taglib uri
=
"
http://jakarta.apache.org/struts/tags-logic
"
prefix
=
"
logic
"
%>
isErrorPage="true"
posted on 2008-09-17 22:41
賀挺
閱讀(123)
評論(0)
編輯
收藏
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發(fā)表評論。
網(wǎng)站導(dǎo)航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
Powered by:
BlogJava
Copyright © 賀挺
主站蜘蛛池模板:
舒兰市
|
武山县
|
白山市
|
微博
|
吉木乃县
|
延长县
|
邳州市
|
普宁市
|
陇西县
|
闽侯县
|
临朐县
|
廉江市
|
年辖:市辖区
|
诸暨市
|
太和县
|
齐河县
|
黄山市
|
龙游县
|
图们市
|
天祝
|
黄大仙区
|
姚安县
|
于都县
|
东丰县
|
罗甸县
|
诸暨市
|
宁蒗
|
桐柏县
|
九龙城区
|
延津县
|
黔西县
|
梨树县
|
兴安县
|
张北县
|
铜陵市
|
中牟县
|
壤塘县
|
亚东县
|
新竹县
|
玛多县
|
渭源县
|