Hi Silviu
I am not familiar with JBOSS but can give you the info for Tomcat. Hopefully you can translate this into JBOSS settings.
You need to add to your tomcat\conf\context.xml file:
...
Type: Posts; User: Daniel8; Keyword(s):
Hi Silviu
I am not familiar with JBOSS but can give you the info for Tomcat. Hopefully you can translate this into JBOSS settings.
You need to add to your tomcat\conf\context.xml file:
...
Hi Silviu
You need to place the aop.xml into WEB-INF\classes\META-INF\aop.xml and it could look like:
<aspectj>
<weaver options="-verbose -showWeaveInfo">
<include...
Silviu, unfortunately I did not find a solution, it just would not work no matter what I tried. I eventually decided to change my design slightly so I can use Spring proxies instead of LTW. Please...
Hi
I am using the new @Cacheable annotation with keys defined via SpEL.
@Cacheable(value="oftenUpdatedCache", key="'relationList' + #p0 + #p1")
a) In order to be able to supply an eviction...
Hi
I would like to use LTW with AspectJ and Spring 3.1. I activated LTW via <context:load-time-weaver/>, put the right jars into their place, no exceptions are thrown but my methods annotated via...
I solved my own case. One of my colleagues created an annotation based edit controller and in addition mapped it in the someApp-servlet.xml. As we have hundreds of controllers, services, etc. it was...
Hi Skram
I copied the Spring jars into my web app's lib folder and this broke it.
Hi,
I updated from Spring 3.0.6 to Spring 3.1 RC1 and now cannot access any page. I get the exception below. Nothing has changed in my configuration since I copied the new Spring jars. I have a...
Hi Allan
If it cannot be resolved then the core "messages.properties" file or any other valid resource bundle is used automatically. Nevetheless this works fine in my JSPs which means that the...
Hi Jonnio
Thanks for your reply. Sorry about the typo, just tried to replace my key variable with some meaningful string.
My property files are all in WEB-INF\classes\languageresources and this...
Hi
I need to translate some text in my domain objects (for specific reports) and want to use the spring-defined language properties files.
I created a new class ResourceManager for this. In the...