02 2023 档案
摘要:1.pom <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.4.0</version> </dependency> 2.m
阅读全文
摘要:JAVA实现导出mysql表结构到Word 1.引入jar包 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.0.0</version> </dependency
阅读全文
摘要:1.pom引用 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.0.0</version> </dependency> <!-- https://mvnrepos
阅读全文
摘要:<?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:sc
阅读全文
摘要:insert update 实现 <insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id" parameterType="com.xxx.xxx.UserDO" useGeneratedKeys="true"> INSE
阅读全文
摘要:将本地项目上传至gitee的方法截图+详细步骤 1.在gitee上创建以自己项目名称命名的空项目 2.进入想上传的项目的文件夹,然后右键点击 Git Bash Here 3. 初始化本地环境,把该项目变成可被git管理的仓库 $ git init 4.添加该项目下的所有文件 $ git add .
阅读全文
摘要:1.应用依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.0</version> </depende
阅读全文
摘要:1. 引入依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 2. applica
阅读全文
摘要:1. 引入依赖 <properties> <swagger.version>2.7.0</swagger.version> </properties> <dependencies> <!-- swagger2 --> <dependency> <groupId>io.springfox</group
阅读全文