java
flashbuffer
这个作者很懒,什么都没留下…
展开
-
jdk unzip 功能
利用临时目录 比如 /tmp 创建目录后 unzip, 如果zip中有文件夹结构,创建该文件并且不做普通文件流读取工作。原创 2020-03-17 18:21:12 · 172 阅读 · 0 评论 -
shiro
token 是用户输入的,不是持久的保密的内容。SecurityManager.login(token) 后 调用 Realm的doGetAuthenticationInfo()得到credential,SecurityManager调用其他辅助类,将token与credential对比(match)。...原创 2019-12-12 23:35:48 · 65 阅读 · 0 评论 -
spring mvc
j2ee容器先读取 web.xml ==>mvcConfig.xml ==> 其他springConfig.xml(可选).service 层必须定义interface ,是因为就版本的动态proxy需要interface。auto wire 时使用接口名称。...原创 2019-12-12 23:24:24 · 70 阅读 · 0 评论 -
传入interface,得到实现de方法
ConcurrentHashMap<Class, Help> cache = new ConcurrentHashMap<Class,Help>(); public <T> Help getImp(Class<T> type){ Help cached = cache.get(type); if (...原创 2019-11-30 21:10:19 · 87 阅读 · 0 评论 -
spring cloud eureka
后端负责load balance nginx 已被 spring cloud eureka代替,如果增加服务器 ,nginx得修改配置,弊端很多,eureka没有这个问题。原创 2019-11-29 08:12:19 · 63 阅读 · 0 评论 -
补日志 Java LocalStorge
当我们自己的程序所运行的Thread 非我们自己New的。但我们想绑定一些对象给这些线程,怎么办。LocalStorage来帮忙,我们可以将多个对象绑定到当前线程。class c1{ ThreadLocal<String> tl1= new ThreadLocal(); ThreadLocal<String> tl2= new Threa...原创 2019-11-28 14:05:49 · 80 阅读 · 0 评论 -
翻译 Netty 4 开发人员指导-User Guide(1)
User guide for 4.xPreface前言The Problem问题Nowadays we use general purpose applications or libraries to communicate with each other. For example, we often use an HTTP client library to retr翻译 2013-11-19 22:23:43 · 1429 阅读 · 0 评论