Spring Boot & JAAS - spring-boot

I have an existing legacy SOAP webservice that runs on Tomcat and uses JAAS(Java authentication & authorization service) for user authentication. I would like to convert this to a SOAP service which runs on Spring boot. I also want to continue with the JAAS configuration for security. How can I integrate JAAS with Spring boot?
Any pointers are appreciated

Related

Using API endpoints with security in #ImportResource annotation

I am working on a spring boot application and I am using #ImportResource annotation for importing resources. I am using an API endpoint within #ImportResource("http://localhost:port/resources"). This API endpoint has authentication enabled. How can I configure authentication in my spring boot app to connect to this endpoint in #ImportResource.
Please help
Thanks in advance

AccessDeniedException, Spring Boot Admin and Spring Boot Application with RESTful endpoint

I have a Spring Boot application registered with Spring Boot Admin using spring security.
Spring Boot application is successfully registered with Spring Boot Admin.
I have this problem, the Spring Boot application exposes some RESTFul calls and when I invoke these endpoints I have security problems, errors of this
type: org.springframework.security.access.AccessDeniedException: Access is denied with error code 401
If I disable the registration to Spring Boot Admin the RESTFUL calls are made successfully.
What can be done?

Spring Boot Admin- OAuth2 Security

currently I'm working on spring boot admin and trying to monitor my REST APIs which I've written in Spring Boot and secured them with OAuth2.
Now I want to monitor my APIs with spring boot admin, how do I do that?

Interaction between api gateway (Zuul) and UAA server (Spring OAuth2) with Spring Boot 2.0

I'm trying to build a system with an gateway server (Zuul), and UAA server (Spring OAuth2)
There's lots of examples but they are all used with Spring Boot 1 (1.5.X?). When I tried to migrate to Spring Boot 2, lots of things got moved or removed (in the auto-configure package).
My current understanding is that the gateway server will acts as an oauth2 client with sso. Hope someone can point me to the right direction.
Thanks.

Secure Spring Apache CXF services with Spring Security Oauth2

I have a running Spring based Apache CXF web service. I want to use Spring Security Oauth2 to secure the existing service. I have done this for SpringREST service but i am not able to find any help for securing CXF with Spring security Oauth2. Can some one please help me.

Resources