Hi everyone !
Simple question : I'm using the @Async annotation and I'm wondering if there is an existing interceptor allowing to execute some in-house code :
- (1) just before the async thread...
Type: Posts; User: Atma; Keyword(s):
Hi everyone !
Simple question : I'm using the @Async annotation and I'm wondering if there is an existing interceptor allowing to execute some in-house code :
- (1) just before the async thread...
Hi everyone !
I'm just starting to use @Validated spring 3.1 new annotation to validate my POJO based on groups.
I'm disappointed with the way the "Default" group is handled using this...
I have a simple class Foo, saying like this one :
public class Foo {
@NotNull
private String bar;
public String getBar(){ return bar; }
public void setBar(String _bar){...
I forgot to precise it but ... I rely on Spring 1.2.X version ;)
(I noticed it was easier now, with Spring 2.X ... but I can't use it :'( )
Thanks for the precision on Spring proxies ... it's...
Hi there !
I'm studying spring AOP since a few days in order to use it in correlation with a home made unit test framework.
I encounter some problems and I wonder if it isn't because of...
... or extend TreeSet and make an "own made" constructor ;) :
public class MyTreeSet extends java.util.TreeSet {
public MyTreeSet(Collection col, Comparator comp){
super(comp);
...
yeah i didn't figured it out ;)
I was talking about treeset :)
In fact, my problem is to "mix" TreeSet's Comparator argument with <set> capability of "adding element" by configuration :)
Hi there ! :)
I'm using Spring 1.4 and wondering if it is possible de create sorted sets (or list, whatever) in the spring beans "grammar".
Like this :
<bean class="path.to.MyClass">
...
Hi there !
I'm going to add WS-Security on my current springed webservices.
I'm currently using JAX-RPC webservices with Axis (and org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean)...