MyBatis 라이브러리 검색 및 설치 - 3.5.1
CODEDRAGON ㆍDevelopment/Spring
반응형
MyBatis 라이브러리 검색 및 설치 - 3.5.1
"mybatis"으로 검색
mybatis
https://mvnrepository.com/search?q=mybatis
첫번째 항목 선택
버전번호 클릭
https://mvnrepository.com/artifact/org.mybatis/mybatis
Maven항목의 dependency 정보 복사
https://mvnrepository.com/artifact/org.mybatis/mybatis/3.5.1
pom.xml 파일의 <dependencies> 태그안에 붙여넣기 하여 추가합니다.
pom.xml
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </dependency> |
Project Explorer의 [Maven Dependencies]항목을 펼치면 라이브러리가 추가된 것을 확인할 수 있습니다.
'Development > Spring' 카테고리의 다른 글
Maven Repositories View 표시하기 - eclipse/STS (0) | 2020.04.26 |
---|---|
Spring 설정 메타정보 XML 파일 생성하기 - eclipse/STS (0) | 2020.04.04 |
Bean 의존관계 주입 Annotation (0) | 2020.03.21 |
Error-Project configuration is not up-to-date with pom.xml. Select: Maven->Update Project... from the project context menu or use Quick Fix. 해결방법 (0) | 2020.03.16 |
Servlet Context (0) | 2020.03.08 |