Greg L. Turnquist

Results 137 issues of Greg L. Turnquist

Current, we have to do [stuff like this](https://github.com/spring-projects/spring-hateoas-examples/blob/master/spring-hateoas-and-spring-data-rest/src/main/java/org/springframework/hateoas/examples/OrderProcessor.java#L88-L101) to mesh a custom controller with a Spring Data REST one. ```java private static Link applyBasePath(Link link, String basePath) { URI uri...

Good opportunity to verify things like https://github.com/spring-projects/spring-hateoas/issues/222

Show how to manually create a `ResourceProcessor` that takes security context into mind. * Show role-based example * Show something more complex like a "user OWNS this domain object"

improvement

https://github.com/spring-guides/gs-batch-processing/issues/6 cites a desire to add this to the Spring Batch guide. I think it would best to leave that guide as-is, and instead consider a separate guide that introduces...

Create a guide showing how to store, lookup, and retrieve files in S3 using http://cloud.spring.io/spring-cloud-aws/. Cloud native apps won't have local file storage nor have mounted fileshares. Look at https://github.com/gregturn/spring-a-gram/tree/master/spring-a-gram-s3-fileservice...

Show repository-level paging/sorting usage, then carry over to Spring data REST. - Include deep links into reference docs for more details. - Ensure it works for using the programmatic interfaces...

MongoDB GridFS is a good candidate for storing files in a cloud native app where local file storage is not an option, and where mounted fileshares would not be available....

https://github.com/spring-guides/gs-accessing-data-mongodb/pull/10 contains several mods to Accessing Data with MongoDB that are in the spirit of audits. This is too much to augment that guide because it expands its scope. But...

In Spring Data REST, we need a more suitable way to tweak browser.html and inject our custom form and JSON Editor. Having a token to search on is quite handy....