Dependencies

  1. java assist
    1. allows us to directly work with bytecode.
    2. Hibernate uses it for transactional proxies
  2. tomcat-dbcp
    1. tomcat database connection pool
    2. Library that allows us to work with database connections
    3. Maintains connection pooling
  3. spring-orm
    1. dependency to work with JPA,hibernate i.e. object oriented database. 
  4. Rest Repository
    1. Needed for creating Rest Web services
  5. Spring Web
    1. To create Web application
  6. Spring Data JPA
    1. For Java Persistence API operations

No comments:

Post a Comment

Spring Boot

What is circular/cyclic dependency in spring boot? When two services are interdependent on each other, that is to start one service, we requ...