简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
在application.properties后缀的配置文件中我们如下使用MAVEN变量:eureka.client.serviceUrl.defaultZone=@defaultZone@@运行时符号会自替换成MAVEN变量配置好的值,但是换成YML配置文件不行了,会报错,如下配置即可解决:eureka: client: service-url: de...
pagehelper-sprng-boot-starter和mybatis-plus-spring-boot-starter同时引入启动时会报错,即使按网上的排出pagehelper-starter的mybatis包依旧报错,具体解决办法如下:<dependency><groupId>com.github.pagehelper</groupId...
一年前自己搭建的spring cloud微服务框架,包括高可用注册中心 断路由 Spring Cloud Config远程配置 Zuul路由 Zipkin请求追踪 feign等。启动顺序为Discover config db server gateway 其中远程配置和zipkin需要取消注释来启用需要搭建微服务框架的朋友可以在此基础上修改以节省时间。github地址:https://github
我的新博客地址:https://wc394915432.github.io/
pagehelper-sprng-boot-starter和mybatis-plus-spring-boot-starter同时引入启动时会报错,即使按网上的排出pagehelper-starter的mybatis包依旧报错,具体解决办法如下:<dependency><groupId>com.github.pagehelper</groupId...
使用eclipse提交时总是会出现一些不需要提交 的东西在提交列表,因此只需要在项目目录建一个 .gitignore 文件就行了,然后加入如下配置:/target/*.class*.jar*.log/logs/*/target/*.gitignore.classpath.settings*.project/.idea/*PS:如果在windows下无法建" ."...
原因是没加jdbc连接参数导致多条插入被识别成一条一条执行,在jdbc连接URL后加上如下参数: rewriteBatchedStatements=true examp:url: jdbc:mysql://xxxx:3306/syncdata_test?useUnicode=true&amp;characterEncoding=utf8&amp;rewriteBatchedSt..