- 浏览: 73426 次
-
最新评论
-
lanliying:
这个问题要什么解决?
[Flex4] Could not resolve <mx:X> to a component implementation -
DavyLee:
简直扯淡,get和load都报同样的错!
[Hibernate] one cause of LazyInitializationException -
SilverRing:
to unzip, use this
tar -zxvf fi ...
[linux] tar and gzip a folder -
SilverRing:
It happens in Tomcat, not JBoss ...
[Log4j] listener order matters -
weifly:
这样写也会有bug:from Ship s where s.n ...
[Hibernate 3] bug about string "call"
文章列表
1) Project配置到 server\default\deploy 文件夹下,如果是web application,并且如果不是一个.war文件,exploded文件夹名称应以.war结尾
2) MySql datasource 的配置文件应放在 server\default\deploy 文件夹下
3) 在 Spring 中配置 dataSource 的 jndiName 时,应写成 java:jdbc/testDS,而不是 weblogic 中的 jdbc/testDS
4)datasource的配置文件应以-ds.xml结尾
- 2007-05-30 11:56
- 浏览 1430
- 评论(0)
What's the lifecycle of a form submit?
Events will trigger in the following order:
initialize()
pageBeginRender() ("rewind")
rewind of the form / setting of properties
Deferred listeners (for Submit components)
Form's listener
pageEndRender() ("rewind" ...
- 2007-04-26 18:05
- 浏览 974
- 评论(0)
Method Injection was introduced in Spring 1.1, which comes in two loosely related forms, Lookup Method Injection and Method Replacement.
Lookup Method Injection
It's added to overcome the problems encountered when a bean depends on another bean with a different lifecycle - specifically, when a single ...
- 2007-04-09 16:45
- 浏览 1844
- 评论(0)
In general, two lifecycle events are particularly relevant to a bean: post-initialization and pre-destruction. Both of these lifecycle events are only fired for beans that are singletons.
1. post-initialization event. 2 ways to implement it: method-based and interface-based.
1) method based. Specify ...
- 2007-04-04 16:26
- 浏览 1671
- 评论(1)
As described in the reply of my previous post, an exception occurred after weblogic cache was cleared.
java 代码
weblogic.application.ModuleException:
at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:295)
at weblogic.application.internal.flow.ScopedModul ...
- 2007-03-22 17:58
- 浏览 6238
- 评论(0)
Problem Description:
Tomcat 5.5.17 is used as the web service host and weblogic 9.2.0 is used as the web service client.
If the return value of ws methods is a complex object, an exception will be thrown:
java 代码
Caused by: java.lang.UnsupportedOperationException
at weblogic.xml.sta ...
- 2007-03-21 16:06
- 浏览 3571
- 评论(1)