- URL url = InternationalResouces.class.getProtectionDomain().getCodeSource().getLocation(); JarFile jarFile = new JarFile(url.getFile()); Enumeration<JarEntry> enum... URL url = InternationalResouces.class.getProtectionDomain().getCodeSource().getLocation(); JarFile jarFile = new JarFile(url.getFile()); Enumeration<JarEntry> enum...
- SpringBoot WebFlux响应式编程 一、简介 Spring WebFlux是Spring Framework 5.0中引入的新的反应式Web框架。 与Spring MVC不同,它不需要Se... SpringBoot WebFlux响应式编程 一、简介 Spring WebFlux是Spring Framework 5.0中引入的新的反应式Web框架。 与Spring MVC不同,它不需要Se...
- 05:15:55.344 sms [asyncTaskExecutor-1] ERROR cc.mrbird.common.util.AddressUtils 54 - 获取地址信息异常:{}java.io.FileNotFoundException: class path resource [ip2region/ip2region.d... 05:15:55.344 sms [asyncTaskExecutor-1] ERROR cc.mrbird.common.util.AddressUtils 54 - 获取地址信息异常:{}java.io.FileNotFoundException: class path resource [ip2region/ip2region.d...
- 一、 MongoDB 关于MongoDB的介绍和基本操作及副本集群搭建可先参考下面我的博客: MongoDB副本集 集群搭建: https://blog.csdn.net/qq_43692950... 一、 MongoDB 关于MongoDB的介绍和基本操作及副本集群搭建可先参考下面我的博客: MongoDB副本集 集群搭建: https://blog.csdn.net/qq_43692950...
- Springboot 升级2.0 1、There is no PasswordEncoder mapped for the id "null" 2018-06-12 11:23:28.247 ERROR 3312 --- [nio-8080-exec-9] o.a.c.c.C.[.[.[/].[dispatcherSer... Springboot 升级2.0 1、There is no PasswordEncoder mapped for the id "null" 2018-06-12 11:23:28.247 ERROR 3312 --- [nio-8080-exec-9] o.a.c.c.C.[.[.[/].[dispatcherSer...
- maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optiona... maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optiona...
- 有状态和无状态的对象基本概念: 有状态对象(Stateful Bean),就是有实例变量的对象 ,可以保存数据,是非线程安全的。一般是prototype scope。 无状态对象(Stateless Bean),就是没有实例变量的对象,不能保存数据,是不变类,是线程安全的。一般是singleton scope。 ... 有状态和无状态的对象基本概念: 有状态对象(Stateful Bean),就是有实例变量的对象 ,可以保存数据,是非线程安全的。一般是prototype scope。 无状态对象(Stateless Bean),就是没有实例变量的对象,不能保存数据,是不变类,是线程安全的。一般是singleton scope。 ...
- Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2018-10-11 08:51:09.752 ERROR 29856 --- [ main... Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2018-10-11 08:51:09.752 ERROR 29856 --- [ main...
- nohup /usr//bin/java -Dspring.config.location=project//xx/ -Duser.timezone=GMT+8 -jar -d64 -Xms2000M -Xmx5000M -server -Xloggc:/project/jvm/jvm.log -XX:+HeapDumpOnOutOfM... nohup /usr//bin/java -Dspring.config.location=project//xx/ -Duser.timezone=GMT+8 -jar -d64 -Xms2000M -Xmx5000M -server -Xloggc:/project/jvm/jvm.log -XX:+HeapDumpOnOutOfM...
- 一、Nebula Graph 前面两篇文章,讲解了下 Nebula Graph 的安装,及 nGQL 的使用,本篇文章讲解下在 java 环境下如何对 Nebula Graph 进行操作,使用 Spri... 一、Nebula Graph 前面两篇文章,讲解了下 Nebula Graph 的安装,及 nGQL 的使用,本篇文章讲解下在 java 环境下如何对 Nebula Graph 进行操作,使用 Spri...
- 设置配置问题 cors.allowedOrigins= http://localhost:4200, https://.*subdomain\\.domain\\.com 基于filter import org.springframework.beans.factory.annotation.Value;import org.sp... 设置配置问题 cors.allowedOrigins= http://localhost:4200, https://.*subdomain\\.domain\\.com 基于filter import org.springframework.beans.factory.annotation.Value;import org.sp...
- SpringBoot使用Mybatis-Plus及多数据源、代码生成 一、优点 Mybatis-Plus(简称MP)是一个 Mybatis 的增强工具,在 Mybatis 的基础上只做增强不做改变,为... SpringBoot使用Mybatis-Plus及多数据源、代码生成 一、优点 Mybatis-Plus(简称MP)是一个 Mybatis 的增强工具,在 Mybatis 的基础上只做增强不做改变,为...
- RabbitMQ 即一个消息队列,主要是用来实现应用程序的异步和解耦,同时也能起到消息缓冲,消息分发的作用。 消息中间件在互联网公司的使用中越来越多,刚才还看到新闻阿里将RocketMQ捐献给了apache,当然了今天的主角还是讲RabbitMQ。消息中间件最主要的作用是解耦,中间件最标准的用法是生产者生产消息传送到队列,消费者从队列... RabbitMQ 即一个消息队列,主要是用来实现应用程序的异步和解耦,同时也能起到消息缓冲,消息分发的作用。 消息中间件在互联网公司的使用中越来越多,刚才还看到新闻阿里将RocketMQ捐献给了apache,当然了今天的主角还是讲RabbitMQ。消息中间件最主要的作用是解耦,中间件最标准的用法是生产者生产消息传送到队列,消费者从队列...
- 一、高性能RabbitMQ RabbitMQ是一个由erlang开发的AMQP(Advanced Message Queue )的开源实现。AMQP 的出现其实也是应了广大人民群众的需求,虽然在同步消息... 一、高性能RabbitMQ RabbitMQ是一个由erlang开发的AMQP(Advanced Message Queue )的开源实现。AMQP 的出现其实也是应了广大人民群众的需求,虽然在同步消息...
- 需要在Swagger2Config类 addResourceHandlers方法 中添加 registry.addResourceHandler("/**") .addResourceLocations("classpath:/resources/") .... 需要在Swagger2Config类 addResourceHandlers方法 中添加 registry.addResourceHandler("/**") .addResourceLocations("classpath:/resources/") ....
上滑加载中
推荐直播
-
华为云码道Agent集成与鸿蒙实战2026/08/11 周二 19:00-21:00
王一男-华为云码道产品规划专家;李炎-华为云码道产品专家;彭江敏-华为云鸿蒙端云一体化开发专家
本次直播带你解读华为云码道7月份产品新特性、新功能。更有专家演示码道Agent Space × 钉钉机器集成实战,从0到1打通消息通道;码道鸿蒙端云一体化实战,快速搭建员工签到系统。
回顾中 -
华为云开发者AI素养直播课·第五期2026/09/04 周五 16:00-18:00
林华鼎-华为云AI开发者运营负责人;蒋春阳-华为云AI开发者案例开发专家
本期直播内容: AI工具体验营 · 第5-8课连讲。Agent-Team 多智能体协作完成毕业设计实践
回顾中 -
华为云开发者AI素养ClassRoom·第六期2026/09/08 周二 19:00-20:00
樊渊-2026华为软件挑战赛冠军
高手来了:看软挑高手解析二维排样问题—从工业难题到算法突破
即将直播
热门标签