This was caused by running the aspectj-maven-plugin and not setting the mode="aspectj"
<task:annotation-driven mode="aspectj"/>
Type: Posts; User: jasonparallel; Keyword(s):
This was caused by running the aspectj-maven-plugin and not setting the mode="aspectj"
<task:annotation-driven mode="aspectj"/>
The class PersonBLImplTest extending BaseTest inherits the test suite annotation so you are both adding it to a suite and calling it a suite. You will need to change your inheritance hierarchy to...
The profile attribute was added in spring 3.1. You are using the 3.0 xsd (and maybe jars?).
See: http://java.dzone.com/articles/using-spring-profiles-xml
How about writing a custom jsp tag that would fetch the value for you?
See this thread for how you could pipe jndi props into PropertyPlaceholderConfigurer
http://forum.springsource.org/showthread.php?14361-PropertyPlaceholderConfigurer-search-in-JNDI
I assume you...
If I was in your shoes, I would look at the source for PropertyPlaceholderConfigurer and PropertyResourceConfigurer to see how I might extent/override/or reuse to create a bean that fetches the...
If you are not building a servlet your would setup the spring container in your main method. See: http://www.springbyexample.org/examples/intro-to-ioc-creating-a-spring-application.html
Yes. I use the PropertyPlaceholderConfigurer (http://static.springsource.org/spring/docs/1.1.5/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html) to make values from a...
Test project: https://github.com/jasonparallel/asynchError (run junit and look for system out statements)
When using the new value property of the asynch annotation execution will not occur.
It...