Search:

Type: Posts; User: Atma; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    300

    Intercepting async calls

    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...
  2. @Validated's given groups should consider Default group or not

    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...
  3. JSR-303 (bean validation) and validating collection

    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){...
  4. Replies
    2
    Views
    1,083

    I forgot to precise it but ... I rely on Spring...

    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...
  5. Replies
    2
    Views
    1,083

    Some questions around about AOP pointcuts

    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...
  6. Replies
    4
    Views
    1,328

    ... or extend TreeSet and make an "own made"...

    ... or extend TreeSet and make an "own made" constructor ;) :


    public class MyTreeSet extends java.util.TreeSet {
    public MyTreeSet(Collection col, Comparator comp){
    super(comp);
    ...
  7. Replies
    4
    Views
    1,328

    yeah i didn't figured it out ;) I was talking...

    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 :)
  8. Replies
    4
    Views
    1,328

    sorted list/set in spring-beans

    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">
    ...
  9. Replies
    0
    Views
    1,343

    How to specify my "custom" client-config file ?

    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)...
Results 1 to 9 of 9