I'm interested if it's possible to use SpringData without Spring. For instance the same way you would use hibernate? Is this possible? My use case is in serverless computing, whereby I don't want to create an entire Spring Context but just make use of Spring Data. I don't what there to be any real initiation process either as in a complex tree of objects needing to be constructed with each request.
Asked
Active
Viewed 25 times
0
-
http://projects.spring.io/spring-data/#quick-start – Brian Dec 14 '17 at 02:45
-
Your example has spring-boot, I want to use it without need to start up Spring. – Derrops Dec 14 '17 at 05:10
-
"I don't what there to be any real initiation process" both Spring Data and any JPA implementations create a fair amount of stuff during startup. The only way to avoid that is not to use it. – Jens Schauder Dec 14 '17 at 06:11