spring mybatis

Solutions on MaxInterview for spring mybatis by the best coders in the world

showing results for - "spring mybatis"
Carla
13 Jan 2018
1		<!-- Mysql Connector -->
2		<dependency>
3			<groupId>mysql</groupId>
4			<artifactId>mysql-connector-java</artifactId>
5			<version>5.1.39</version>
6		</dependency>
7
8		<!-- Mybatis -->
9		<dependency>
10			<groupId>org.mybatis</groupId>
11			<artifactId>mybatis</artifactId>
12			<version>3.2.8</version>
13		</dependency>
14		
15		<!-- Mybatis-Spring -->
16		<dependency>
17			<groupId>org.mybatis</groupId>
18			<artifactId>mybatis-spring</artifactId>
19			<version>1.2.2</version>
20		</dependency>
21		
22		<!-- Spring-JDBC -->
23		<dependency>
24			<groupId>org.springframework</groupId>
25			<artifactId>spring-jdbc</artifactId>
26			<version>${org.springframework-version}</version>
27		</dependency>
28		
29		<!-- common-dbcp -->
30		<dependency>
31			<groupId>org.apache.commons</groupId>
32			<artifactId>commons-dbcp2</artifactId>
33			<version>2.7.0</version>
34		</dependency>
35        
36		<!-- Spring Test -->
37		<dependency>
38			<groupId>org.springframework</groupId>
39			<artifactId>spring-test</artifactId>
40			<version>${org.springframework-version}</version>
41		</dependency>