I'm working on a Spring Boot project for digital signature where I want to create some REST controllers using the classic Spring Web syntax (@RestController
, @XMapping
, etc.). Looking for some libraries to carry out the signature work I found this one, which includes working REST controllers made with the JAX-RS spec. So I thought that simply exposing them in my app would get the job done with the minimum possible code. Initially I thought about creating the controllers myself and delegate the work to the lib, but as soon as I found about these already existing controllers, I thought that I could even skip that and keep the code very small.
I managed to successfully do that by adding the org.springframework.boot:spring-boot-starter-jersey
dependency and registering them in Jersey's ResourceConfig
. But I think that this might be incompatible with org.springframework.boot:spring-boot-starter-web
and/or org.springframework.boot:spring-boot-starter-data-rest
because as soon as the JAX-RS API from the lib became callable, the endpoints that data-rest
creates automatically from the @Repository
classes disappeared.
I've been looking for a way to integrate these two things together in Spring Boot and I'm not sure if it is even possible, or a good idea all together. To be honest I wouldn't really mind coding my controllers with the JAX-RS spec, I've worked with it in the past and I like it as well. What I don't want to lose is the automatic creation of controllers for @Repository
classes that spring-data-rest
does, as I really like that feature.
Am I trying something really stupid, or is there any way to do this?