I'm happy to live!
Develop with pleasure!
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
39 随笔 :: 2 文章 :: 31 评论 :: 0 Trackbacks
<
2008年12月
>
日
一
二
三
四
五
六
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
10
公告
天下之事败于懒与私.
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(6)
给我留言
查看公开留言
查看私人留言
随笔分类
Diary(11)
(rss)
English 随笔
(rss)
New Concept English 2(3)
(rss)
programme(9)
(rss)
Star Craft 随笔(1)
(rss)
日常随笔(4)
(rss)
电影随笔(2)
(rss)
随笔档案
2015年12月 (1)
2015年10月 (1)
2015年7月 (1)
2015年4月 (1)
2012年11月 (1)
2011年10月 (1)
2011年1月 (2)
2010年12月 (2)
2009年11月 (2)
2009年7月 (2)
2009年5月 (1)
2008年12月 (1)
2008年10月 (1)
2005年12月 (1)
2005年11月 (21)
文章分类
English(1)
(rss)
Programme(1)
(rss)
文章档案
2005年11月 (2)
相册
My Family Album
Top Model
收藏夹
软件收藏(2)
(rss)
友情链接
English for Fun(josh)
搜索
最新评论
1. re: DIV在FF下的拖动
我也不行, 刚看你们说的, 我就在里面加个 ,,,,,凑合着先用着
--忆清风岁月
2. re: 面试
楼主写得东西还是挺实用的啊,最近好像没怎么写的样子,呵呵
--linjiang2@163.com
3. re: DIV在FF下的拖动
不清楚
--tb
4. re: DIV在FF下的拖动
评论内容较长,点击标题查看
--星期五
5. re: 关于时间的一些疑问?
@何杨
建议使用"GMT",用London的话有夏令时问题,夏令时期间就是GMT+1了
--Rene
阅读排行榜
1. ResourceBundle读取资源文件的路径问题(12322)
2. 重回Frontend!(4628)
3. Mysql 碰到的问题(3911)
4. angularjs 1.2.x 不支持动太插入ng-pattern?(2911)
5. Ajax异步返回方式处理(2163)
评论排行榜
1. HTML标记(5)
2. Ajax异步返回方式处理(5)
3. 2005年11月10日(4)
4. DIV在FF下的拖动(3)
5. 关于时间的一些疑问?(3)
Spring集成Struts时爆servlet action is not available
今天做个spring和struts的集成Demo,我用的是myeclipse6.5,导入spring框架和struts框架都相当方便,一切就序后,开tomcat,跑吧,相当的不爽,第一个链接就爆: servlet action is not available,什么意思啊,难道我的配置文件没配对?检查了没天也没发现什么问题.
以下是我的struts 的struts-config.xml:
<
struts-config
>
<
data-sources
/>
<
form-beans
/>
<
global-exceptions
/>
<
global-forwards
/>
<
action-mappings
>
<
action
path
="/hello"
type
="com.laxxx.struts.action.Hello"
>
<
forward
name
="hello"
path
="/hello.jsp"
/>
</
action
>
</
action-mappings
>
<
controller
processorClass
="org.springframework.web.struts.DelegatingRequestProcessor"
/>
<
message-resources
parameter
="com.laxxx.struts.ApplicationResources"
/>
<
plug-in
className
="org.springframework.web.struts.ContextLoaderPlugIn"
>
<
set-property
property
="contextConfigLocation"
value
="/WEB-INF/applicationContext.xml"
/>
</
plug-in
>
</
struts-config
>
以下是spring的applicationContext.xml:
<
beans
xmlns
="http://www.springframework.org/schema/beans"
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
>
<
bean
name
="/hello"
class
="com.laxxx.struts.action.Hello"
>
</
bean
>
</
beans
>
看了又看找了又找,还是没看出问题,把struts-config中关于spring两段配置去掉后,单跑struts是没问题的,看来很有可能myeclipse没把包导全啊,可能没找到,发现好多人都中过此招,有些包没找到spring的代理请求处理类或者是没找到初始化spring上下文的插件类,这两个类都在spring.jar中,于是把这个jar包放入lib目录中去,重启tomcat... ... 再点,ok,终于到应该去的地方了.
posted on 2008-12-04 17:19
Norsor
阅读(553)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © Norsor