创建两个项目,服务提供者service-offer和服务消费者service-consumer 一、service-offer的pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot ...
分类:
其他好文 时间:
2021-06-02 11:44:54
阅读次数:
0
最近整理了一下spring boot关于对多数据源的配置,记录下来: 一, 引入Jar包: <dependency> <!-- MySql驱动 --> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </d ...
分类:
编程语言 时间:
2021-06-02 11:18:39
阅读次数:
0
Swagger 快速上手 1. Maven 依赖如下 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> <dependency> <groupId>io.springfox</groupId> <a ...
分类:
其他好文 时间:
2021-06-02 10:44:59
阅读次数:
0
知识: 英语单词 Authentication 认证 Authorization 授权 principal 首要的,本金,校长 shiro三大对象 Subject 用户 SecurityManager 管理用户 Reaim 连接用户 使用步骤 导入依赖 <dependency> <groupId>o ...
分类:
其他好文 时间:
2021-06-02 10:40:25
阅读次数:
0
1、pom.xml文件添加依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.62</version> </dependency> 2、将对象转为json格式的字符 ...
分类:
编程语言 时间:
2021-05-25 17:44:13
阅读次数:
0
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <!-- 作用域范围为test --> <scope>test</scope> </dependency> 将<sc ...
分类:
其他好文 时间:
2021-05-24 17:22:10
阅读次数:
0
1、pom.xml文件 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.springframework. ...
分类:
编程语言 时间:
2021-05-24 15:52:36
阅读次数:
0
Jackson Jackson的使用步骤 第一步 导入Jackson所需依赖 <!-- jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artif ...
分类:
编程语言 时间:
2021-05-24 14:51:13
阅读次数:
0
原项目系统中已经引入了 Mybatis 和 pagehelper ,当引入Mybatis-plus 后启动项目报错 SqlSessionFactory 错误,排查原因后为依赖冲突导致,需排除部分jar包 1. Mybatis中 <dependency> <groupId>tk.mybatis</gr ...
分类:
编程语言 时间:
2021-05-24 12:59:05
阅读次数:
0
1、引入jar包 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency> <dependency ...
分类:
其他好文 时间:
2021-05-24 12:27:05
阅读次数:
0