SpringBoot发送邮件 1、pom <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</ ...
分类:
编程语言 时间:
2021-04-06 14:13:11
阅读次数:
0
##spring boot中连接数据库报错500(mybatis) pom.xml中的依赖 <!-- 集成mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boo ...
分类:
数据库 时间:
2021-04-02 13:13:58
阅读次数:
0
<span style="padding:0px; margin:0px"><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch ...
分类:
其他好文 时间:
2021-03-30 13:54:44
阅读次数:
0
一、 实现添加用户功能 1 创建项目 2 修改 POM 文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/ ...
分类:
编程语言 时间:
2021-03-30 13:45:52
阅读次数:
0
一、新建云存储微服务 1、在service模块下创建子模块service-oss 2、配置pom.xml service-oss上级模块service已经引入service的公共依赖,所以service-oss模块只需引入阿里云oss相关依赖即可, service父模块已经引入了service-ba ...
分类:
编程语言 时间:
2021-03-30 13:44:50
阅读次数:
0
1.pom.xml文件(主要是添加依赖和插件) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XM ...
分类:
其他好文 时间:
2021-03-30 13:39:53
阅读次数:
0
使用maven进行打包成jar包后 使用java -jar运行jar包 出现 错误: 找不到或无法加载主类 jar 这是我们要在项目的pom.xml里面添加 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> ...
分类:
编程语言 时间:
2021-03-29 12:37:49
阅读次数:
0
基于redisson实现分布式锁 一、上官网 https://redisson.org/ 二、pom文件引入依赖 <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.11. ...
分类:
其他好文 时间:
2021-03-29 12:14:25
阅读次数:
0
https://mvnrepository.com 该mvn网站可以找到个个版本的依赖jar包 http://doc.canglaoshi.org 该网站为达内的开发文档服务器,可以找到很多开发中需要的配置文件 ...
分类:
编程语言 时间:
2021-03-29 12:13:00
阅读次数:
0
需要在工程的pom文件加上sleuth的起步依赖和zipkin的起步依赖,代码如下: <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-sleuth</artifact ...
分类:
其他好文 时间:
2021-03-18 14:43:18
阅读次数:
0