SpringBoot統合MybatisPlusの簡単なチュートリアル(簡単な統合)
7031 ワード
最近springbootを研究しているので、ついでにデータベース接続の知識を見ているので、汎用MapperとMybatisPlusという2つのネットワーク上で比較的火をつけているmybatisが開発した優れたソフトウェアがあることを発見した後.どれが自分に似合うか試してみたいです.まずspringbootのプロジェクトを作成し、私の前の文章Spring Bootの簡単なチュートリアル(一)Spring Bootプロジェクトの作成を参考にすることができます. springbootを作成したらmybatisとmybatis-plusを統合する必要があります.pom.xmlファイルを開き、最新のmybatis関連パッケージを参照します. アプリケーション.ymlに関する構成が必要です. モジュールを自動生成する方法で、対応する場所に自分のパッケージ名を追加することで、対応するEntity、Mapper、Mapper XML、Service、Controllerなどの各モジュールを生成するコードを実行できます. 生成されたコントローラに対応するメソッドを追加して起動すれば正常にアクセスできます.
もちろんSpring Boot起動クラスに@MapperScan注記を追加し、Mapperフォルダをスキャンする必要があります.
mysql
mysql-connector-java
runtime
org.projectlombok
lombok
true
com.baomidou
mybatis-plus-boot-starter
3.1.1
com.baomidou
mybatis-plus-generator
3.1.1
org.freemarker
freemarker
2.3.28
#
server:
port: 8088
#
spring:
datasource:
url: jdbc:mysql://localhost:3306/*** #
username: root
password: 123456
mybatis:
#
configuration:
map-underscore-to-camel-case: true
mybatis-plus:
# xml
mapper-locations: classpath:mapper/*Mapper.xml
# , package
type-aliases-package: *** #
configuration:
# sql ,
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
public class CodeGenerator {
/**
*
*
*
*/
public static String scanner(String tip) {
Scanner scanner = new Scanner(System.in);
StringBuilder help = new StringBuilder();
help.append(" " + tip + ":");
System.out.println(help.toString());
if (scanner.hasNext()) {
String ipt = scanner.next();
if (StringUtils.isNotEmpty(ipt)) {
return ipt;
}
}
throw new MybatisPlusException(" " + tip + "!");
}
public static void main(String[] args) {
//
AutoGenerator mpg = new AutoGenerator();
//
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath + "/src/main/java");
gc.setAuthor("jobob");
gc.setOpen(false);
// gc.setSwagger2(true); Swagger2
mpg.setGlobalConfig(gc);
//
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/***?useUnicode=true&useSSL=false&characterEncoding=utf8");
// dsc.setSchemaName("public");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("***");
mpg.setDataSource(dsc);
//
PackageConfig pc = new PackageConfig();
// , 。
// pc.setModuleName(scanner(" "));
pc.setParent("com.zhouxiaoxi.www");
mpg.setPackageInfo(pc);
//
InjectionConfig cfg = new InjectionConfig() {
@Override
public void initMap() {
// to do nothing
}
};
// freemarker
String templatePath = "/templates/mapper.xml.ftl";
// velocity
// String templatePath = "/templates/mapper.xml.vm";
//
List focList = new ArrayList<>();
//
focList.add(new FileOutConfig(templatePath) {
@Override
public String outputFile(TableInfo tableInfo) {
// , Entity 、 xml !!
return projectPath + "/src/main/resources/mapper/"
// + + pc.getModuleName() + ,
+ "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML;
}
});
/*
cfg.setFileCreate(new IFileCreate() {
@Override
public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
//
checkDir(" ");
return false;
}
});
*/
cfg.setFileOutConfigList(focList);
mpg.setCfg(cfg);
//
TemplateConfig templateConfig = new TemplateConfig();
//
// , .ftl/.vm,
// templateConfig.setEntity("templates/entity2.java");
// templateConfig.setService();
// templateConfig.setController();
templateConfig.setXml(null);
mpg.setTemplate(templateConfig);
//
StrategyConfig strategy = new StrategyConfig();
//
strategy.setNaming(NamingStrategy.underline_to_camel);
// , naming
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
// Entity ,
// strategy.setSuperEntityClass("***");
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
// Controller ,
// strategy.setSuperControllerClass("***");
strategy.setInclude(scanner(" , ").split(","));
// Entity , ( )
// strategy.setSuperEntityColumns("id");
//
strategy.setControllerMappingHyphenStyle(true);
//
// strategy.setTablePrefix(pc.getModuleName() + "_");
mpg.setStrategy(strategy);
mpg.setTemplateEngine(new FreemarkerTemplateEngine());
mpg.execute();
}
}
もちろんSpring Boot起動クラスに@MapperScan注記を追加し、Mapperフォルダをスキャンする必要があります.
@SpringBootApplication
@MapperScan("***.*.mapper") // mapper
public class Application {
public static void main(String[] args) {
SpringApplication.run(QuickStartApplication.class, args);
}
}