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