:> 使用Spring initialier 需要配置文件
在网站制作、成都网站设计过程中,需要针对客户的行业特点、产品特性、目标受众和市场情况进行定位分析,以确定网站的风格、色彩、版式、交互等方面的设计方向。成都创新互联公司还需要根据客户的需求进行功能模块的开发和设计,包括内容管理、前台展示、用户权限管理、数据统计和安全保护等功能。
POM文件
复制代码 代码如下:
org.springframework.boot spring-boot-starter-web org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.1 org.springframework.boot spring-boot-devtools runtime true MySQL mysql-connector-java runtime org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.mybatis.generator mybatis-generator-maven-plugin 1.3.2 mybatis-generator deploy generate src/main/resources/mybatis-generator/generatorConfig.xml true true mysql mysql-connector-java 8.0.19 org.mybatis.generator mybatis-generator-core 1.3.2a org.springframework.boot spring-boot-maven-plugin exec 1: application配置文件
复制代码 代码如下:
## mapper xml 文件地址mybatis.mapper-locations=classpath*:mapper/*Mapper.xml##数据库urlspring.datasource.url=jdbc:mysql://localhost/test2?userSSL=true&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT##数据库用户名spring.datasource.username=root##数据库密码spring.datasource.password=root##数据库驱动spring.datasource.driver-class-name=com.mysql.jdbc.Driver#Mybatis Generator configuration#dao类和实体类的位置mybatis.project =src/main/java#mapper文件的位置mybatis.resources=src/main/resources
配置 Mybatis-Generator
复制代码 代码如下:
<?xml version="1.0" encoding="UTF-8"?>
3: 进行配置
右侧Maven处点击如图所示位置
测试陈宫
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。
标题名称:SpringBoot使用Mybatis-Generator配置过程详解
文章网址:
http://cdkjz.cn/article/gpgsjh.html