SpringCloud一个子模块引用另外的子模块无效
我的 abbott-cloud-system想要引用abbott-cloud-common模块中的方法 abbott-cloud-common abbott-cloud-generator abbott-cloud-system abbott-cloud-…
springboot整合es时候出现了错误
springboot使用:2.3.0版本es使用:7.0.0版本package com.jd.wego.entity; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data…
我想将原来图片保存在本地功能改成保存到服务器上,怎么实现?
我想将原来图片保存在本地功能改成保存到服务器上String filename = "D:\\ScenePics\\Plate20210416165034669.jpg";这个路径改写成网络地址http:\\8.1…
Vue 执行npm run build 之后没法跨域 速求指点
npm start直接运行项目 发送请求没问题 但是执行执行npm run build 之后点击dist文件夹下的index.html 就会出现跨域问题这是springboot @CrossOrigin…
Spring Boot 如何访问处于docker compose的mysql服务和环境变量?
主要有两个问题:1). 直接把application.yml中的localhost改为docker compose的服务名就行了吗?url: jdbc:mysql://localhost:3306/test2). 如何把doc…
SpringBoot我想获取图片流,然后将图片流的数据传到服务器上
我想获取图片流,然后将图片流的数据传到服务器上这行好像是获取图片流的,但是这个buffers我怎么传递给服务器我想把buffers作为参数传给口,不知道怎…
mybatis报错:Error creating bean with name 'xxxDao' defined
mybatis报错:Error creating bean with name 'xxxDao' defined in file [xxx]: cannot resolve reference to bean 'sqlSessionFactory' while settin…
springsecurity 去除默认role_前缀?
// @Override // public void configure(WebSecurity web) throws Exception { // web.expressionHandler(new DefaultWebSecurityExpressionHandler()…
部署在两个服务器下的相同项目,能不能实现activity工作流同步?
问题描述因为项目分为外网和内网,把系统部署在内网一个,外网一个,内外网系统代码项目,外网的系统用外网的数据库,内网的用内网的数据库,因为系统…
springboot2.0整合druid,怎么检测是否整合成功了???
#spring配置 spring: application: name: gxc-webapp #应用名 datasource: #【配置数据源】 type: com.alibaba.druid.pool.DruidDataSource driver-cl…
springboot @ControllerAdvice处理异常无法正确匹配自定义异常
Controller 抛出异常无法匹配:1、 throw new BasicException();可以匹配;2、 throw new RuntimeException();无法匹配;是哪里写错了吗?以下是部分代…
SpringBoot项目拆分为SpringCloud微服务,pom.xml文件报错了
Failed to read artifact descriptor for com.web:abbott-generator:jar:1.子pom.xml文件
并发情况下advice记录日志错乱如何解决?
问题描述Springboot项目,在频繁调用多个接口时,advice里记录的日志会错乱。现象是这样的:在请求量大的时候,A请求正在执行未执行完毕,B请求进入并…