Reputation: 318
I want to use Spring Data Cassandra in a non-Spring Project for Object Mapping. The project is not using Spring Boot or any other Spring component. Is this a good practice or I am doing it the wrong way?
P.S-Things are working fine but just wanna know If I'm on right track.
Upvotes: 0
Views: 138
Reputation: 61
The usage of Spring Data in a non Spring project is frequent (mostly in old projects). The real question is, how to integrate it properly in your current architecture. It's not a good or bad practice, it's a technical chose which must be in adequacy with your functional and technical requirements.
Upvotes: 1