**I'm new to microservices I have a service A , service B Service C are using same database to access the User details which is in Service C. can we have the the same hibernate entity to get the info in service A and Service B , there will be inconsistency of the update operation. According to me there is three solutions **
- Have Hibernate Entity of user table in service A and service B both so they cabn access the data
- Use JDBC and try to get to data from the individual service
- Call service C to give information which we need to give what user data they need.