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...
Type: Posts; User: Laures; Keyword(s):
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...
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...
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...
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...
I created a ticket: https://jira.springsource.org/browse/SECOAUTH-371
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...
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...
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.
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...
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...
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...
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...
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...
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...
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]...
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...
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...
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...
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...