java
DWiZero
这个作者很懒,什么都没留下…
展开
-
持续记录:spring项目知识点
spring项目知识点 需要注意细节提示 @Scope(“prototype”) 单例的bean注入此类型的bean:不起作用 注入 @Scope(value = "prototype") public class PrototypeService { } @Scope(value = "prototype", proxyMode = ScopedProxyMode.TARGET_CLASS) public class PrototypeWithProxyService { } @Service @原创 2020-05-25 17:00:22 · 391 阅读 · 0 评论 -
菜鸟学习笔记:java中使用Integer.getInteger(String)有java.lang.NullPointerException
原因: Integer类:转化String为int或Integer,多个方法 Integer.valueOf(String)方法假设String参数表达的是一个数值,会把该数值String转化成Integer。也就是说, Integer.valueOf("123") 得到一个Integer对象,其值是123。 Integer.parseInt(String)方法假设String参数表达的是一...转载 2016-12-18 07:51:17 · 4821 阅读 · 0 评论 -
LeetCode——Longest Valid Parentheses
问题:LeetCode运行提示:Time Limit Exceeded 问题类别:低级错误,在循环中声明变量 while (!stack.isEmpty()) { int index = stack.pop(); ss[index] = 0; } 改正:问题解决,变量声明在循环之外 ...原创 2018-03-24 22:25:08 · 154 阅读 · 0 评论 -
问题记录:服务注册中心用eureka换为ZooKeeper...
#最最最重要的问题 版本问题 当Maven中有多个引用,包与包之间的引用冲突,包与使用的软件之间的冲突 ##细节问题 zooKeeper版本与引用的包的版本不对应 Q: org.apache.zookeeper.KeeperException$UnimplementedException: KeeperErrorCode = Unimplemented for… A: spring-cloud-s...原创 2019-05-04 13:00:46 · 381 阅读 · 0 评论