摘要: @Slf4j @Service public class SpringContextHolder implements ApplicationContextAware, DisposableBean { private static ApplicationContext applicationCon 阅读全文
posted @ 2019-11-27 09:48 尽 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 说明 java.lang.String.charAt() 方法返回指定索引处的char值。索引范围是从0到length() - 1。对于数组索引,序列的第一个char值是在索引为0,索引1,依此类推 声明 public char charAt(int index) 参数 index -- 这是该指数 阅读全文
posted @ 2019-11-27 09:46 尽 阅读(757) 评论(0) 推荐(0) 编辑
摘要: 注解说明 @Lazy:一般情况下,Spring容器在启动时会创建所有的Bean对象,使用@Lazy注解可以将Bean对象的创建延迟到第一次使用Bean的时候。 引用 在类上加入@Lazy或者@Lazy(value=true) @Lazy默认为true,@Lazy(false)等同于不加@Lazy注解 阅读全文
posted @ 2019-11-27 09:31 尽 阅读(5253) 评论(0) 推荐(0) 编辑