카테고리 없음

maven Dependency 목록

행복하게사는게꿈 2020. 8. 20. 19:20
  • Dependency 목록

    • Spring-webmvc
      : Spring mvc 프로젝트를 하기위해선 추가해야할 기본적인 dependency이다.

    • spring-tx
      : spring transaction을 사용하기위한 dependency이다.

    • spring-orm
      : jpa를 사용하고자 할때 추가해야하는 dependency이다.

    • hibernate-core
      : jpa를 사용하고 hibernate를 사용하고자 할때 추가하는 dependency이다.

    • hibernate-c3p0 
      : db connection pool로 c3p0를 사용하고자 할때 사용하는 dependency이다.

    • c3p0
      : dpcp 라이브러리인 c3p0 dependency이다.

    • hibernare-validator
      : entity에서 데이터의 유효성 검증을 하기 위한 dependency이다.

    • javax.servlet.jsp.jstl-api
      : front end 단에서 jstl을 사용하기 위한 dependency이다.

    • standard
      : taglib를 사용하기 위한 dependency이다.

    • javax.servlet-api
      : servlet dependency 이다.

    • javax.servlet.jsp-api
      : JSP dependency 이다.

    • com.fasterxml.jackson.core
      : Json converter 로 RESTful api를 작성할때 json데이터를 변환하고 결과를 json 데이터로 전송해주기 위해 필요한 dependency이다. 

    • mysql
      : database로 mysql을 사용하기 위한 connector-J dependency 이다.

    • jUnit
      : 당장은 사용안하지만 후에 unit 테스트를 하기위한 dependency이다.