I am trying to profile a web application in RAD the memory analysis and thread analysis seem to work fine.
But I am facing an issue with execution time analysis.
I start the server in profiling...
Type: Posts; User: prao81; Keyword(s):
I am trying to profile a web application in RAD the memory analysis and thread analysis seem to work fine.
But I am facing an issue with execution time analysis.
I start the server in profiling...
Similar issue raised in the past, but no solution
http://forum.springsource.org/showth...-spring-bug-)&
have been trying to switch from spring aop transaction management to spring aspecjt transaction management.
My configuration goes like this
application context
<bean id="txMgr"...
Similar issue raised in the past, but no solution
http://forum.springsource.org/showthread.php?93138-JTA-Suspension-under-WAS-7-(possible-spring-bug-)&
I have been trying to switch from spring aop transaction management to spring aspecjt transaction management.
My configuration goes like this
application context
<bean id="txMgr"...
Have not tried this , but would this work
In my app context 1 which is the root context have a line
<context:load-time-weaver weaver-class="example.LoadTimeWeaver1">
and in my other app...
Thanks Marten . I understand that only classes loaded by same class loader will be modified.
But what if my app itself runs in 2 class loaders. Even though I switch on spring ltw, it seems to only...
Thanks Marten .
How does LTW work in the context of multiple class loaders.
Having a look at the load time weaver class (say WebSphereLoadTimeWeaver ) and also AspectJWeavingEnabler it looks...
I have a question on spring aspectj lTW integration.
If an app has two application contexts (one loaded by the context listener and one for the dispatcher servlet) , if I specify...
Some more info.
My spring application-context has the line
<context:load-time-weaver aspectj-weaving="on"...
I am trying to get aspectj ltw working in my app.
My app is structured like below
Test
-- TestCommon
-- TestPersistence
-- TestWeb
where Test is the base EAR project.