天天看點

idea中mysql配置檔案,在IDEA中mybatis根據資料庫表名自動生成相應的配置檔案

jdbc.driverLocation=D:\\Program Files\\Java\\apache-maven-3.5.2\\repository\\mysql\\mysql-connector-java\\8.0.11\\mysql-connector-java-8.0.11.jar

jdbc.driver=com.mysql.cj.jdbc.Driver

jdbc.url=jdbc:mysql://127.0.0.1:3306/system?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC

jdbc.username=root

jdbc.password=123456<?xml version="1.0" encoding="UTF-8"?>

/p>

PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"

"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

driverClass="${jdbc.driver}"

connectionURL="${jdbc.url}"

userId="${jdbc.username}"

password="${jdbc.password}">

targetProject="src/main/java">

targetProject="src/main/java">

targetProject="src/main/java" type="XMLMAPPER">

enableCountByExample="true" enableUpdateByExample="true"

enableDeleteByExample="true" enableSelectByExample="true"

selectByExampleQueryId="true">

idea中mysql配置檔案,在IDEA中mybatis根據資料庫表名自動生成相應的配置檔案
idea中mysql配置檔案,在IDEA中mybatis根據資料庫表名自動生成相應的配置檔案
idea中mysql配置檔案,在IDEA中mybatis根據資料庫表名自動生成相應的配置檔案
idea中mysql配置檔案,在IDEA中mybatis根據資料庫表名自動生成相應的配置檔案

控制台輸出這個表示已經生成成功,所生成的檔案都在generator.properties配置檔案所配置的路徑裡面