码迷,mamicode.com
首页 >  
搜索关键字:apply security setting    ( 14715个结果
Maven学习笔记(二):Maven仓库
Maven仓库的知识点比较少,理解起来也很简单。仓库只有两类:本地仓库和远程仓库。所谓本地仓库就是自己机器上的仓库,在setting.xml文件中进行配置:1 E:/MavenStore本地仓库中存储的就是在使用Maven解析项目时从远程仓库下载的依赖和自己安装的一些构建。远程仓库很明显就是网络上的...
分类:其他好文   时间:2014-07-24 14:35:05    阅读次数:212
Chapter 1 Securing Your Server and Network(6):为SQL Server访问配置防火墙
SQL Server 的通信基于TCP和UDP端口,如果你需要从非本机的机器上访问SQL Server,需要打开防火墙的端口。...
分类:数据库   时间:2014-07-24 12:25:25    阅读次数:278
Extjs 组件继承 模板说明(以GridPanel为例)
1. 重写initComponent()方法,并在该方法在调用父类的initComponent()方法。      如:subclass.superclass.initComponent.call(this); 2. 在initComponent中,出现下面语句,覆盖父类属性 Ext.apply(this, { title : "aaa" }); 3. 基本模板代码如下:Ext.ns(...
分类:Web程序   时间:2014-07-24 10:32:19    阅读次数:225
SELinux的Docker安全性
原文译自:http://opensource.com/business/14/7/docker-security-selinux 这篇文章基于我今年在DockerCon一个讲座,它将讨论我们当前听到的Docker容器的安全问题. 容器并不"包容" 我听到也读到许多假定Docker容器是应用沙盒的观点--这意味着他们可以在他们的系统上使用有根权限的Docker来运行任意的程序. 他们相...
分类:系统相关   时间:2014-07-23 17:18:26    阅读次数:469
Chapter 1 Securing Your Server and Network(5):使用SSL加密会话
如果想保护这些数据不被嗅探器侦测,需要使用SSL加密客户端和服务器之间的交互。...
分类:Web程序   时间:2014-07-23 17:11:33    阅读次数:255
js apply/call/caller/callee/bind使用方法与区别分析
一、call 方法 调用一个对象的一个方法,以另一个对象替换当前对象(其实就是更改对象的内部指针,即改变对象的this指向的内容)。 Js代码 call([thisObj[,arg1[, arg2[, [,.argN]]]]]) 参数 thisObj 可选项。将被用作当前对象的对象。 arg1, a...
分类:移动开发   时间:2014-07-23 15:05:36    阅读次数:301
Autorotation and Autosizing
配置应用级别的旋转方向——Global Setting方法:点击项目-General-Deployment-Device OrientationIt doesn’t necessarily mean that every view in your application will use all o...
分类:其他好文   时间:2014-07-23 15:02:46    阅读次数:276
修改linux资源限制
vi/etc/security/limits.confroot soft nofile 4096root hard nofile 65536root soft noproc 2047root hard noproc 16384root soft stack 10240root hard stack....
分类:系统相关   时间:2014-07-23 14:59:16    阅读次数:291
java加密解密和证书的demo
import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.security.InvalidKeyException; import java.security.Key; imp...
分类:编程语言   时间:2014-07-23 13:59:26    阅读次数:313
Spring Security笔记:Remember Me(下次自动登录)
本文讲解了如何在Spring Security3中实现Remember Me功能
分类:编程语言   时间:2014-07-23 11:44:17    阅读次数:432
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!