Joe,
I am running into a similar situation as our tokens need to be something more than the default UUID type 4 tokens. Is this for both the access and the refresh token?
See my forum post....
Type: Posts; User: mveitas; Keyword(s):
Joe,
I am running into a similar situation as our tokens need to be something more than the default UUID type 4 tokens. Is this for both the access and the refresh token?
See my forum post....
The TokenEnhancer will work for the access token as it can be modified after the fact, but not for the refresh token as there is only a TokenEnhancer for the accessToken.
private...
Good morning,
I am working on integrating Spring Security OAuth 2.0 into my application and had some custom requirements for generating the custom values for the access and refresh tokens instead...
Amol,
Has there been any further work done with the library. I noticed it has not been touched for almost 7 months now. If you are not actively developing it, I would be interested in working on...
Good call on creating a working project. I'll probably just grab one of the samples from the spring-social project and replace the UserConnectionRepository.
I just finished up writing an implementation of the ConnectionRepository that can use MongoDB as the datastore and would like to contribute it back after I put some polish to it. Where would be the...
Just saw this was fixed for RC 1: https://jira.springsource.org/browse/DATADOC-291
Thanks to the Spring team for the quick response. Next time I'll add a JIRA issue for something like this.
So another workaround to use is to use the @Query annotation:
@Query("{ 's.$id': ?0, type: ?1 }")
public Page<Review> findByStadiumIdAndReviewType(String stadiumId, int type, Pageable...
I am trying to get an application up and running using Spring and MongoDB (3.1 along with 1.0.0.M4 respectively). I am going to be bound by memory constraints and need tomake sure the data is as...
Anybody else seen something with the method marked as @Cacheable not having the cache being invoked??
I figure this is some sort of issue with the type of proxies created... any good tips on the best way to debug this??
Good morning,
I am working on a little RSS feed for a site that is updated 1 or 2 times a day. I am looking to use the @Cacheable annotation to tell my service to cache the result of a call that...
You can grab the fix from here if you can't wait for the next release:
https://github.com/SpringSource/spring-data-document/commit/2d5f41f65ccb5e3cde3f2b2979ede96406ecdfe0
I believe this is the same issue you are experiencing: https://jira.springsource.org/browse/DATADOC-171
I am trying to use the latest MongoDB release, 1.0.0.M3 along with the Spring Data JPA project, but I am getting error on deployment due to what looks like some project incompatibilities (renamed...
Please ignore my post as it was my own fault having an older version of the project with the same class name being edited!!!
I know that true 3.1.0.M1 support is not available in STS yet, but these are just annotations and not sure why they would not be able to be used.
I am unable to use the annotations found in the org.springframework.cache.annotations package such as @Cacheable? Given that the spring-context-3.1.0.M1.jar is in the classpath and listed in the...
One use case would be avoiding having to pull in yet another 3rd party javascript resource and increase page load/render time. If the same sort of thing can be achieved via a simple link that fires...
The 3.0 support is in the source code: http://git.springsource.org/spring-social/spring-social/commit/d2ec33111fb5d12e79480a34bd001971c18f739b
But there is still 3.1 dependencies defined in the...
If you pull down the latest from git repo, you'll see that they have added the support for 3.0. I was supposed to get some testing of it today but I got sucked down into another rabbit hole that I am...
Any potential suggestions on what might be able to be done if we are stuck using 3.0.x?
Is there anyone else out there in the same boat?
Keith,
Thanks for the explanation. I know that one of the projects I am working on will not be able to switch to spring 3.1 M1. I am sure other people will be in the same boat and given that 3.1...
I have been following the commit logs for spring-social and have noticed that Spring 3.1.0.BUILD-SNAPSHOT has been introduced? Will spring-social depend on 3.1 or is that just a temporary thing to...
I am looking through some of the new spring-social work that is being done and noticed that a method was dropped off the ServiceProvider interface from the migration from greenhouse,...