Search:

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

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    218

    Redis with read-only slaves

    I want to use Spring-Data redis to access a redis cluster with one master and a bunch of read-only slaves.

    Can i configure a redis template to support that or do i have to rely on jedis to do...
  2. simple example: with the sample app (sparklr):...

    simple example:

    with the sample app (sparklr): when i call
    http://localhost:8080/sparklr2/oauth/token (with no parameters, but with authorization) i get a json response.
    with my project when i...
  3. Stack trace for OAuth2 Exception thrown by Authorization/Token endpoint

    I'm very happy with spring-security-oauth2 but some minor things are left.

    What do i have to configure to make my spring application turn oauth2exceptions from the authorization/token endpoints...
  4. Spring managed Id-Sequence (SessionCustomizer) for EclipseLink

    I want to use the snowflake id generator created by twitter. to do this i have to configure the snowflake sequence in my sessioncustomizer with certain parameters (datacenterid, serverid, ...).

    I...
  5. I created a ticket:...

    I created a ticket: https://jira.springsource.org/browse/SECOAUTH-371
  6. 2012-12-10...

    2012-12-10 15:52:13.678:WARN:oejs.ServletHandler:/oauth/token
    error="invalid_request", error_description="The client account is locked, expired, disabled or removed."
    at...
  7. Exception Resolution for OAuth2Exceptions does not work

    According to the Javadoc of the
    ClientDetailsService i should throw an
    OAuth2Exception when a client does not exist/is blocked/... (never return null). When i do that the authorization endpoint...
  8. without having the project at hand right now.......

    without having the project at hand right now.... no, i don't think so.

    PS: i will update on monday, i just found out about the release today.
  9. Token request with current uri fails because current uri is null

    I'm testing spring security oauth 2 (the last RC) with facebook. To log in users based on facebook connect i use a oauth2 rest template to get the facebook id. unfortunately when the template tries...
  10. fixed my annotation was wrong. the correct one...

    fixed

    my annotation was wrong. the correct one is of cause: @PathVariable("id"). the fix from the jira ticket works!

    it is still an interesting behaviour of spring to simply take the value and...
  11. Spring Data DomainClassConverter doesn't work.

    I'm trying to use an extension for spring-data-jpa and get spring mvc to auto look up my domain objects based on path parameters ( documentation ).

    I already figured out that the documented way of...
  12. Multithreaded Message Consumption from a JMS Topic?

    Hi,

    i have a message listener on a jms topic that is not fast enough to consume all messages on the topic with a single thread. how is it possible to scale-out with my consumer and use multiple...
  13. How to find ApplicationContext.xml files from multiple jar files in the classpath

    Hi,

    I'm currently developing a modularized application with spring. currently we have a core with a main method that looks for the application context xml files of any modules using the following...
  14. not sure if its a spring security of general...

    not sure if its a spring security of general spring issue but spring security classes are initialized before init() on the configurableApplicationContext is called (so before the...
  15. ApplicationEventMulticaster not initialized - with spring-data for mongo

    I'm currently experiencing the following exception when my spring application starts:


    2012-04-27 17:42:51,021 ERROR [main] com.hazelcast.impl.FactoryImpl - /10.188.31.125:54327 [dev]...
  16. Replies
    3
    Views
    537

    fixed:...

    fixed: http://stackoverflow.com/questions/10110374/preauthorize-doesnt-work/10131270#comment12998466_10131270

    the root cause was that the service that had a secured method was used by the...
  17. Replies
    3
    Views
    537

    Ok, i guess i identified the problem: my...

    Ok, i guess i identified the problem:

    my @preauthorize secured bean is not postprocessed, so its not proxied, so it doesn't offer access control
    my @secured secured bean is postprocessed, so it...
  18. Replies
    3
    Views
    537

    did some more tests: when I configure only...

    did some more tests:

    when I configure only secured-annotations="enabled" the role based security works.
    when I configure pre-post-annotations="enabled" in ADDITION neither secured nor...
  19. Replies
    3
    Views
    537

    PreAuthenticate not having any effekt

    I'm writing a socket server (no web-application !) application and want to use method-based security to handle my ACL needs. i followed a small tutorial i found Spring security by example

    so far i...
Results 1 to 19 of 20