Springboot2.X + screw数据库快速开发文档(74)
1、pom依赖 创建springboot项目,勾选依赖 添加screw需要的依赖,检查是否最新版本,链接地址-> 最新版本 <dependency> <groupId> org.freemarker </groupId> <artifactId> freemarker </artifactId> <version> 2.3.30 </version> </dependency> <dependency> <groupId> cn.smallbun.screw </groupId> <artifactId> screw-core </artifactId> <version> 1.0.3 </version> </dependency> 2、测试类 下面填写自己的mysql账号密码 spring.datasource.url = spring.datasource.username = spring.datasource.password = spring.datasource.driver-class-name = com . mysql . cj . jdbc . Driver spring.datasource.xa.properties.useInformationSchema = true 3、生成文档测试类 /Users/mac/Desktop 这个是自己电脑的路径