javax.validation.Validator校验对象的时候,如何校验子对象?
Validator validator = Validation.byDefaultProvider().configure() .addProperty("hibernate.validator.fail_fast", "true") .buildValidatorFactor…
为什么是new Class而不是new Class()?
为什么是new Class而不是new Class()?是因为Class没有可供实例化的构造函数吗?如果是这样,为什么不是Class.getInstance()来获取实例而是new呢?感…
idea 导入 spring boot 项目,build失败
Clearing build system data... Executing pre-compile tasks... Loading Ant Configuration... Running Ant Tasks... Cleaning output directories..…
nacos 启动注册成功, 列表找不到服务
\!\[image\]\(/img/bVcLEBw\) 经过查看, 发现 这里获取了 System\.getProperty\("namespace"\) 我用的是sprinboot2\.3\.3 项目里引用了Saturn 3\.4\.…
java 获取ipv6 失败
String result = HttpUtil.get("https://www.taobao.com/help/getip.php");我通过java 请求 https://www.taobao.com/help/g...,获取ipv6地址,放回的…
使用Springboot yml配置文件的问题 Could not resolve placeholder
在springboot中使用application.yml配置文件时,通过@Value加载配置参数,普通参数一切ok,只要涉及数组,就提示Could not resolve placeholder 'XXX' …
Spring源码 If a @Configuration class gets proxied 如何理解?
ConfigurationClassEnhancer enhancer = new ConfigurationClassEnhancer(); for (Map.Entry entry : configBeanDefs.entrySet()) { AbstractBeanDef…
用 resttemple 进行http请求,在并发(100)的情况,会出现部分请求在socketread0阻塞
问题描述用 resttemple 进行http请求,访问内网的另一个服务,在并发(100)的情况,会出现部分请求阻塞,耗时到达4~5秒左右。已排除被调用方的问题。…
关于springboot bean 一切都是bean
说是springboot中一切都是bean,是指能写成bean的类都要写成bean吗? 譬如我有一个统一的返回类 public class Response{},那么应该注册这个bean,然…
@AutoConfigurationPackage和@ComponentScan的作用有什么区别?
是关于@SpringBootApplication注解的一点疑惑,该注解的大致构成如下:其中@ComponentScan都知道是用于扫描主启动类路径及其子路径下的类,而@EnableA…