Created
January 13, 2017 04:30
-
-
Save enujo/10effbde013a8770de47d73d91748145 to your computer and use it in GitHub Desktop.
Spring mySQL myBatis 의존성 주입
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- mysql connector 추가 --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.40</version> | |
</dependency> | |
<!-- 스프링에서 JDBC 사용을 위한 spring-jdbc --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jdbc</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<!-- 마이바티스 사용하기 위해--> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis</artifactId> | |
<version>3.4.1</version> | |
</dependency> | |
<!-- 스프링에서 마이바티스 사용하기 위한 --> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis-spring</artifactId> | |
<version>1.3.0</version> | |
</dependency> | |
<!-- 커넥션 풀 사용 위한 --> | |
<dependency> | |
<groupId>commons-dbcp</groupId> | |
<artifactId>commons-dbcp</artifactId> | |
<version>1.4</version> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment