- 浏览: 5819 次
- 性别:
- 来自: 深圳
最新评论
文章列表
X-Frame-Options
X-Frame-Options response header 可用于指示是否应该允许浏览器呈现在一个页面<FRAME>
或 <IFRAME>中. 以确保网站内容是不是嵌入到其它网站.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-Frame-Options" conte ...
package thread;
import sun.nio.cs.ThreadLocalCoders;
/**
* 对该类提供了线程局部 (thread-local) 变量 助理并发对数据的的共享
*
* @author admin
*
*/
public class ThreadLocalTest {
private static int attribute = 0;
//使用ThreadLocal处理数据并发性。
private static ThreadLocal<Integer> serialNum = new ThreadL ...