摘要:
git拉取gitlab项目: unable to access 'http://git.yijiago.com/meimeng/lsyjg_java.git/': The requested URL returned error: 414 解决之一: 权限问题 阅读全文
摘要:
spring: datasource: druid: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/myschool username: root password: 123 initial-siz 阅读全文
摘要:
Parameter 0 of method modifyRequestBodyGatewayFilterFactory in org.springframework.cloud.gateway.config.GatewayAutoConfiguration required a bean of ty 阅读全文
摘要:
GitHub:https://github.com/happyfish100 安装>>>>>>>>>>>>>>> 1.环境 yum install git gcc gcc-c++ make automake autoconf libtool pcre pcre-devel zlib zlib-dev 阅读全文
摘要:
组件版本关系 Spring Cloud Alibaba VersionSentinel VersionNacos VersionRocketMQ VersionDubbo VersionSeata Version 2.2.1.RELEASE or 2.1.2.RELEASE or 2.0.2.REL 阅读全文
摘要:
scope: 1.compile 默认就是compile,什么都不配置也就是意味着compile。compile表示被依赖项目需要参与当前项目的编译,当然后续的测试,运行周期也参与其中,是一个比较强的依赖。打包的时候通常需要包含进去。默认的scope,在部署的时候将会打包到lib目录下,项目在编译, 阅读全文
摘要:
1. <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </d 阅读全文
摘要:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> 有这个依赖的话,需要配置: @Configurat 阅读全文
摘要:
Web server failed to start. Port 8082 was already in use. 打开CMD运行界面中:输入netstat -ano 查看启动的进程ID 然后将该ID的进程杀死即可: taskkill /F /pid PID 如:taskkill /F /pid 2 阅读全文
摘要:
package redis.clients.jedis; import java.net.URI; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLParameters; import javax.net.ssl.SSLS 阅读全文