Search:

Type: Posts; User: wims.tijd; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. you could use an AbstractRoutingDataSource for...

    you could use an
    AbstractRoutingDataSource for your use case
  2. maybe you can try extending storedprocedure like...

    maybe you can try extending storedprocedure like :


    FindDocumentsProcedure extends StoredProcedure

    public FindDocumentsProcedure(JdbcTemplate template) {
    super(template, SPROC_NAME);...
  3. workspace related

    http://forum.springsource.org/showthread.php?126494-Avoiding-STS-Bogus-Warnings-And-Errors
  4. Replies
    2
    Views
    290

    exactly what i used to lookup keys in the...

    exactly what i used to lookup keys in the database :


    public class IdCountListener extends ItemListenerSupport<Map<String, Object>, Map<String, Object>> implements ChunkListener,...
  5. you'll need a role populator like this : ...

    you'll need a role populator like this :


    <bean id="user-details-authorities-populator" class="org.springframework.security.ldap.authentication.UserDetailsServiceLdapAuthoritiesPopulator">...
  6. Replies
    5
    Views
    370

    these versions run fine : spring batch admin :...

    these versions run fine :
    spring batch admin : 1.2.2.RELEASE
    spring batch : 2.1.9.RELEASE
    spring integration : 2.2.0.RELEASE
    spring : 3.2.0.RELEASE
  7. @northernpole I kept a registry to hold on to...

    @northernpole

    I kept a registry to hold on to the authenticated Authentication for subsequent calls,
    this was a quick way, there can be other logic of course;

    For the aop advice : have to...
  8. check my solution...

    check my solution http://forum.springsource.org/showthread.php?73677-How-to-secure-jmxServer-(JConsole)
  9. i use spring 3.2 with spring-resteasy which comes...

    i use spring 3.2 with spring-resteasy which comes with its spring-mvc config,
    so basically all to set up is in your web.xml
    did you setup the resteasy dispatcher or
    had a look at this spring-mvc...
  10. Replies
    5
    Views
    2,151

    this may a bit late reply but anyway : some...

    this may a bit late reply but anyway :
    some servers do not allow you to register your mbeans under an arbitrary domain name,
    you should provide a domain name when registering your mbeans
  11. Replies
    2
    Views
    298

    okay , i got an interceptor with ...

    okay , i got an interceptor with

    <mvc:interceptors>
    <mvc:interceptor>
    <mvc:mapping path="/**"/>
    <bean class="RepositoryHandlerInterceptor"

    />
    </mvc:interceptor>...
  12. Replies
    2
    Views
    298

    spring data rest

    1) i am not getting any rest events with an applicationlistener on RepositoryEvent,
    2) could not get a reference to RepositoryRestHandlerMapping either :
    i want to hook in an...
  13. Thread: 1.0.0.rc3

    by wims.tijd
    Replies
    3
    Views
    437

    spring-data-rest-webmvc-app

    this happens to the example as well : spring-data-rest-webmvc-app
  14. Thread: 1.0.0.rc3

    by wims.tijd
    Replies
    3
    Views
    437

    1.0.0.rc3

    updating to this version does not expose any repository,

    output :

    {

    "links": [ ],
    "content": [ ]

    }
  15. Replies
    12
    Views
    730

    use commons dbcp

    use commons dbcp

    <bean id="batch-job-data-source" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"
    p:url="${db.url}" p:username="${db.username}" ...
  16. Replies
    2
    Views
    1,121

    control bus integration

    i really like this addition ;
    i defined a control bus along with a gateway to link it with the command :


    <context:annotation-config/>

    <int:channel id="request-command"/>
    <int:channel...
  17. what is working for me : - a separate jar with...

    what is working for me :
    - a separate jar with the entities
    - in META-INF/persistence.xml the entities listed you want to load
  18. you do not have to specify the jar, how does...

    you do not have to specify the jar,
    how does your persistence.xml look like ?
  19. Replies
    2
    Views
    318

    check your jnlp file : does it has the correct...

    check your jnlp file : does it has the correct file names ?
    and also : you'll need to define your persistence classes in the persistence.xml :
    classpathscanning does not work in webstart
  20. reference manual section 1.4.1 and override the...

    reference manual section 1.4.1 and override the method you need ?
  21. Replies
    1
    Views
    317

    DatabaseMetadataCallback and see the package...

    DatabaseMetadataCallback and see the package org.springframework.jdbc.core.metadata
  22. depends on where the roles are : in db : use...

    depends on where the roles are :
    in db : use roleprovider which delegades to userdetailsservice
    in ldap : there should be a roleprovider or implement the interface for it
  23. this is due to classloading your jar should be...

    this is due to classloading
    your jar should be in the web-inf/lib so it can be scanned,
  24. change it to a gateway : ...

    change it to a gateway :


    <int-file:outbound-gateway directory="" request-channel="" reply-channel="generated-files" filename-generator=""/>

    <int:channel id="generated-files"/>

    ...
  25. he wants the generated file name, ...

    he wants the generated file name,

    AbstractReplyProducingMessageHandler(156 )] - handler 'org.springframework.integration.file.FileWritingMessageHandler@d38976' sending reply Message:...
Results 1 to 25 of 130
Page 1 of 6 1 2 3 4