- 浏览: 6256 次
- 性别:
- 来自: 杭州
最新评论
文章列表
package com.example.thread;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
/**
* 本篇说明的是Callable和Future,它俩很有意思的,一个产生结果,一个拿到结果。
* Created by weng.junjie on 2017/2/16.
*/
publ ...
前进键shift+backspace,Alt+Right
后退键backspace,Alt+Left
主页Alt+Home
刷新F5,ALT+F5
https://zhidao.baidu.com/question/402789446.html
最近分享代码较少,正好在优化最代码关于返回的html代码的压缩上有些相关经验分享下。
【参考:http://www.zuidaima.com/share/2633847241772032.htm】
之前研究的是通过freemarker的原生macro实现的:
1
<@compress single_line=true>
2
<html>
3
freemarker template技术
4
</html>
5
</@compress>
但因为最代码目前已经有几十个template文件,一个个加的话太费时费力了,另外如果不是freemarker技术的 ...
package com.bestwenzhang.web.config;
import java.util.concurrent.Executor;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.Configuration;
import org.springframew ...