上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页
摘要: @ConditionalOnProperty 根据属性值创建对象 属性存在且值匹配时创建,不存在时不创建。my-config.enable-property = true时才会创建对象 my-config.enable-property = true import org.springframewo 阅读全文
posted @ 2022-06-08 09:51 翠微 阅读(540) 评论(0) 推荐(0) 编辑
摘要: java @Value("${encryptEnable:false}") boolean encryptEnable; 配置中心 encryptEnable java @RefreshScope //修复自动刷新 @ConfigurationProperties(prefix = "encrypt 阅读全文
posted @ 2022-06-02 11:04 翠微 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 【Java SE】http请求HttpClient 文档:https://hc.apache.org/httpcomponents-client-4.5.x/current/tutorial/html/fundamentals.html 依赖 <dependency> <groupId>org.ap 阅读全文
posted @ 2022-05-26 15:03 翠微 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 【Java SE】http请求RestTemplate RestTemplate对象 @Configuration public class RestTemplateConfiguration { @Bean public RestTemplate restTemplate() { HttpComp 阅读全文
posted @ 2022-05-26 15:03 翠微 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 返回自己和超类的 public 字段、方法、构造器getFields()getMethods()getConstructors() 超类没返回 返回自己的所有 字段、方法、构造器getDeclaredFields()getDeclaredMethods()getDeclaredConstructor 阅读全文
posted @ 2022-05-22 19:13 翠微 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 【Java SE】注解 阅读全文
posted @ 2022-05-21 10:11 翠微 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 代理会在运行时创建一个实现了一组给定接口的新类。创建的代理类名字以$Proxy开头,并且是public和final的。创建代理类时需要提供一个实现了InvocationHandler接口的调用处理器,无论何时调用代理对象的方法,调用处理器的invoke方法都会被调用,并向其传递Method和原始对象 阅读全文
posted @ 2022-05-21 10:11 翠微 阅读(17) 评论(0) 推荐(0) 编辑
摘要: referrer <meta name="referrer" content="no-referrer"> referrer content的值空字符串no-referrerno-referrer-when-downgradesame-originoriginstrict-originorigin- 阅读全文
posted @ 2022-05-18 10:45 翠微 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 【JavaCV】OpenCV基本使用 OpenCV documentation 阅读全文
posted @ 2022-05-14 11:14 翠微 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 【JavaCV】FFmpeg基本使用 FFmpeg documentation FFmpegFrameFilter fFmpegFrameFilter;FFmpegFrameGrabber fFmpegFrameGrabber;FFmpegFrameRecorder fFmpegFrameRecor 阅读全文
posted @ 2022-05-14 11:08 翠微 阅读(739) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 35 下一页