加载中
org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata

启动报错 java.lang.ClassNotFoundException: org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata 因spring-cloud-alibaba-dependencies和spring-boot-depende...

03/14 18:29
4
查看日志方法 在springboot,springcloud中使用openfegin失败

在springboot,springcloud中使用openfegin失败,查看日志方法 1 将日志设置为debug logging: level: com: debug 2 设置feign的日志配置,command-gateway为调用服务名称 feign: client: con...

idea导入项目时发现其子项目的pom.xml文件是灰色,被划掉了如何解决?

1 idea中打开 File | Settings | Build, Execution, Deployment | Build Tools | Maven 2 找到 Maven | Ignored Files 把忽略项目去掉......

02/17 18:05
13
spring boot中循环依赖打印日志

The dependencies of some of the beans in the application context form a cycle: vehicleJobInfoController (field private com.geovis.persistence.service.job.IVehicleJobInfoService ...

02/17 10:08
15
spring boot和spring cloud的区别

spring boot和spring cloud的区别是什么? spring cloud是基于spring boot的一种框架,包括 eureka、ribbon、 feign、 zuul 、hystrix等 Spring Boot是基于Spring的一套快速配置脚手架 Spri...

02/14 19:00
13
开发中使用时间的概念

时间的概念 本地日期时间:表示当地的日期时间。12:00是中午吃饭的时间,8:00是早上上班的时间,这是人类习惯的一种表示时间的方式,是不带时区信息的日期和时间,可以当成一个String。例如:...

02/09 19:10
7
git查看当前项目提交的远程路径

使用命令 git remote -v

02/09 18:11
9
call 'refresh' before invoking lifecycle methods

. ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =...

02/03 17:17
32
springboot找不到或无法加载主类

Execution default of goal org.springframework.boot:spring-boot -maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find main class 注意main类放置在哪个路径下,参考比对正确的...

01/19 11:02
32
git 提交返回request大的错误

git 提交比较大的项目文件或很多文件的时候报错 原因:http.postBuffer默认上限为1M。 解决办法:在git的配置里将http.postBuffer变量改大一些即可,比如将上限设为500M: git config --glob...

01/17 15:27
25
FrameworkServlet中的doService方法

org.springframework.web.servlet.FrameworkServlet DispatcherServlet<-FrameworkServlet<-HttpServletBean<-HttpServlet<-GenericServlet<-Servlet( javax.servlet) Servlet中方法有 init...

2022/12/09 14:27
23
quartz在postgresql中初始化表

DROP TABLE IF EXISTS QRTZ_FIRED_TRIGGERS; DROP TABLE IF EXISTS QRTZ_PAUSED_TRIGGER_GRPS; DROP TABLE IF EXISTS QRTZ_SCHEDULER_STATE; DROP TABLE IF EXISTS QRTZ_LOCKS; DROP TABLE I...

2022/12/09 13:50
65
quartz使用总结

quartz使用总结 1 sping boot quartz中配置的quartz.properties是如何解析的? StdSchedulerFactory public static final String PROP_DATASOURCE_PREFIX = "org.quartz.dataSource"; org.q...

2022/12/09 13:47
15
pulsar MessageListener 使用参考

/** * A listener that will be called in order for every message received. */ @InterfaceAudience.Public @InterfaceStability.Stable public interface MessageListener<T> extends Ser...

2022/11/15 16:28
167
java类builder 模式实现

builder 模式实现方式 public class BatchReceivePolicy implements Serializable { private static final long serialVersionUID = 1L; /** * Default batch receive policy. * * <p>Max nu...

2022/11/04 15:18
16
LongAddr代码分析

使用cell数组存放数据,减少线程访问数据的冲突 使用cas方法设置标识位置,保持关键操作的原子性 结构 继承了Striped64的实现方法,同时继承了Number类 Striped64属性 transient volatile C...

2022/11/01 09:32
18
mapstruct使用

mapstruct使用 1 引入pom依赖 <!--mapstruct核心--> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> <version>1.5.0.Beta1</version> </dependency> <...

2022/10/26 17:38
35
springboot+ignite+jpa+postgresql配置方式

springboot+ignite+jpa+postgresql配置方式 pom文件配置 在搭建过程中遇到了版本冲突问题,多次尝试之后发现新版本解决了报错问题, java: 名称冲突: org.apache.ignite.springdata22.reposi...

2022/10/26 16:59
179
java版本ignite实例创建

@Bean public Ignite getIgnite() { CacheConfiguration cacheConfiguration = new CacheConfiguration(); cacheConfiguration.setSqlFunctionClasses(MyFunctions.class); cach......

2022/09/22 17:35
11

没有更多内容

加载失败,请刷新页面

返回顶部
顶部