上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 1. 引包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-ldap</artifactId> </dependency> 2. 配置文件application 阅读全文
posted @ 2022-06-02 13:58 剑阁丶神灯 阅读(1821) 评论(0) 推荐(0)
摘要: 1. 类加载流程图, 左边是C++流程,右边是jvm流程 2. 查看汇编指令, 进入字节码目录: javap -v 类名.class , 例如: 3. 类加载流程示例: package com.zqd.day01; /** * @author ADeng * @date 2022/5/31 * @d 阅读全文
posted @ 2022-05-31 20:46 剑阁丶神灯 阅读(95) 评论(0) 推荐(0)
摘要: 说明: WebService是很早以前的技术, 已经比较过时了, WebService在jdk1.8或及以下版本兼容性更好; jdk1.9或及其以上版本, WebService兼容性不太友好, 此笔记基于jdk11 1. WebServiceTest父模块 <?xml version="1.0" e 阅读全文
posted @ 2022-05-22 19:02 剑阁丶神灯 阅读(182) 评论(0) 推荐(0)
摘要: public class ObserveTest { public static void main(String[] args) { NotifyObject1 notifyObject1 = new NotifyObject1(); NotifyObject2 notifyObject2 = n 阅读全文
posted @ 2022-03-14 11:54 剑阁丶神灯 阅读(12) 评论(0) 推荐(0)
摘要: public class TemplateMethodTest { public static void main(String[] args) { AbstractClass abstractClass = new Subclass1(); abstractClass.operation(); / 阅读全文
posted @ 2022-03-08 17:13 剑阁丶神灯 阅读(29) 评论(0) 推荐(0)
摘要: public class StrategyTest { public static void main(String[] args) {// Zombie zombie = new FlagZombie(); Zombie zombie = new BigHeadZombie(); zombie.d 阅读全文
posted @ 2022-03-08 14:26 剑阁丶神灯 阅读(22) 评论(0) 推荐(0)
摘要: public class WrapperTest { public static void main(String[] args) { /** 拍照 */// Componnet conCreateComponnet = new ConCreateComponnet();// conCreateCo 阅读全文
posted @ 2022-02-25 15:00 剑阁丶神灯 阅读(20) 评论(0) 推荐(0)
摘要: public class PageUtil { private PageUtil() { // 工具类私有构造方法 } /** * 内存分页 * * @param page * @param pageSize * @param filterDtoList * @param <T> * @return 阅读全文
posted @ 2022-02-25 13:35 剑阁丶神灯 阅读(215) 评论(0) 推荐(0)
摘要: /** * 建造者 */public abstract class Builder { // 地基 public abstract void buildA(); // 钢筋工程 public abstract void buildB(); // 粉刷 public abstract void bui 阅读全文
posted @ 2022-02-25 13:34 剑阁丶神灯 阅读(35) 评论(0) 推荐(0)
摘要: ******************************************正确写法******************************************************package com.example.SpringBootTest1.shejimoshi.sin 阅读全文
posted @ 2022-02-25 13:34 剑阁丶神灯 阅读(48) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页