Created
April 23, 2014 14:22
-
-
Save gnosis23/11217161 to your computer and use it in GitHub Desktop.
Mybatis Generator Maven plugin
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
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans | |
http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context | |
http://www.springframework.org/schema/context/spring-context.xsd"> | |
<!--datasource--> | |
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> | |
<property name="driverClassName" value="${jdbc.driverClassName}"/> | |
<property name="url" value="${jdbc.url}"/> | |
<property name="username" value="${jdbc.username}"/> | |
<property name="password" value="${jdbc.password}"/> | |
</bean> | |
<context:property-placeholder location="config/jdbc.properties" /> | |
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> | |
<property name="dataSource" ref="dataSource" /> | |
<property name="mapperLocations" value="classpath*:mapper/*.xml" /> | |
</bean> | |
<bean id="heroUserMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> | |
<property name="mapperInterface" value="dao.HeroUserMapper" /> | |
<property name="sqlSessionFactory" ref="sqlSessionFactory" /> | |
</bean> | |
</beans> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE generatorConfiguration | |
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" | |
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> | |
<generatorConfiguration> | |
<classPathEntry location="C:\Users\bohao\.m2\repository\mysql\mysql-connector-java\5.1.29\mysql-connector-java-5.1.29.jar" /> | |
<context id="DB2Tables" targetRuntime="MyBatis3"> | |
<jdbcConnection driverClass="com.mysql.jdbc.Driver" | |
connectionURL="jdbc:mysql://localhost:3306/test" | |
userId="root" | |
password="1111"> | |
</jdbcConnection> | |
<!--<javaTypeResolver >--> | |
<!--<property name="forceBigDecimals" value="false" />--> | |
<!--</javaTypeResolver>--> | |
<javaModelGenerator targetPackage="entity" targetProject="src\main\java"> | |
<!--<property name="trimStrings" value="true" />--> | |
</javaModelGenerator> | |
<sqlMapGenerator targetPackage="mapper" targetProject="src\main\resources"> | |
<!--<property name="enableSubPackages" value="true" />--> | |
</sqlMapGenerator> | |
<javaClientGenerator type="XMLMAPPER" targetPackage="dao" | |
targetProject="src\main\java"> | |
<!--<property name="enableSubPackages" value="true" />--> | |
</javaClientGenerator> | |
<!--<table schema="study" tableName="hero" domainObjectName="Hero" />--> | |
<table schema="test" tableName="hero_users" domainObjectName="HeroUser" /> | |
</context> | |
</generatorConfiguration> |
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
jdbc.driverClassName=com.mysql.jdbc.Driver | |
jdbc.url=jdbc:mysql://localhost:3306/test | |
jdbc.username=root | |
jdbc.password=1111 |
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
package app; | |
import dao.HeroUserMapper; | |
import entity.HeroUser; | |
import entity.HeroUserExample; | |
import org.springframework.context.ApplicationContext; | |
import org.springframework.context.support.ClassPathXmlApplicationContext; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: bohao | |
* Date: 4/23/0023 | |
*/ | |
public class Main { | |
public static void main(String[] args) { | |
ApplicationContext context = new ClassPathXmlApplicationContext("classpath:config/database.xml"); | |
HeroUserMapper mapper = context.getBean("heroUserMapper", HeroUserMapper.class); | |
HeroUserExample heroUserExample = new HeroUserExample(); | |
heroUserExample.createCriteria().andNameEqualTo("wang"); | |
HeroUser user = mapper.selectByExample(heroUserExample).get(0); | |
System.out.println(user); | |
} | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>mvc2</groupId> | |
<artifactId>mvc2</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<properties> | |
<spring.version>3.2.2.RELEASE</spring.version> | |
<jackson.version>1.9.10</jackson.version> | |
</properties> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.mybatis.generator</groupId> | |
<artifactId>mybatis-generator-maven-plugin</artifactId> | |
<version>1.3.0</version> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<!--mybatis--> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis-spring</artifactId> | |
<version>1.2.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis</artifactId> | |
<version>3.2.5</version> | |
</dependency> | |
<!--mysql--> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.29</version> | |
</dependency> | |
<!-- Spring 3 dependencies --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jdbc</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-core</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>${spring.version}</version> | |
</dependency> | |
<!-- Jackson JSON Mapper --> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-mapper-asl</artifactId> | |
<version>${jackson.version}</version> | |
</dependency> | |
<!--servlet--> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>2.5</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment