码迷,mamicode.com
首页 >  
搜索关键字:dap    ( 817个结果
SpringSecurity源码解读
1.前言 官方解释如下 https://spring.io/projects/spring-security SpringSecurity项目继承WebSecurityConfigurerAdapter完成拦截鉴权逻辑,如下 Spring鉴权认证思路就是利用J2EE的Filter,上面的WebSec ...
分类:编程语言   时间:2019-01-10 18:51:12    阅读次数:262
tomcat体系结构
总体架构解析 Server: 一个StandardServer类实例就表示一个Server容器,TOMCAT启动的时候首先会启动一个Server,一个Server包括多个Service Service:一个StandardService类实例就表示一个Service容器,它由一个或者多个Connec ...
分类:其他好文   时间:2019-01-10 18:23:10    阅读次数:286
android中RecyclerView控件的使用
1、RecyclerView控件不在标准的库里面,需要先引入,引入比较简单,点击控件右边的下载按钮即可 2、先添加一个新闻实体类,用来为新闻列表提供数据,news.java: 3、在res/drawable/xhdpi目录下引用几个图片,做为新闻图片的资源 4、添加一个Layout XML File ...
分类:移动开发   时间:2019-01-09 11:12:16    阅读次数:193
SQL-sqlHelper001
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using System.Con... ...
分类:数据库   时间:2019-01-08 23:34:04    阅读次数:188
Spring中的观察者模式-事件监听
在编码过程中,我们经常会遇到完成一个操作需要多个步骤完成的情况。我们可能会把多个步骤写到一个方法里,假如这个操作需要新增步骤,那么势必要修改已有的方法,这违反了开闭原则。 我们可以使用spring的事件机制来简单地实现这种功能。Spring的事件机制用到了观察者模式,何谓观察者模式?观察者模式(有时 ...
分类:编程语言   时间:2019-01-06 18:17:17    阅读次数:249
设计模式第5篇:适配器模式
一.适配器模式要解决的问题 适配器模式属于结构设计模式,我们把将两个不相关的接口做一个适配以使二者进行交互的接口成为适配器。比如充电器就是一个适配器,正常电源是120V,手机电池输入电压是3V,电瓶车电池输入电压为20V,空调输入电压为120V,通过适配器适配,可以将120V电源转换为3V、20V、 ...
分类:其他好文   时间:2019-01-05 11:15:09    阅读次数:215
winform使用PrintDocument控件打印
代码,需要加入的控件:PrintDocument、PageSetupDialog、PrintDialog、PrintPreviewDialog、BackgroundWorker,控件的Document属性要指定为PrintDocument控件的id。导入Excel用的是12.0的驱动,需要下载:ht ...
分类:Windows程序   时间:2019-01-04 14:56:22    阅读次数:1386
Citrix DesktopGroup中MinimumFunctionalLevel是什么意思?
最近在写PowerShell脚本,把一些日常task给automation,写到创建CitrixDesktopGroup的部分,createdesktopgroup没什么问题,就用New-BrokerDesktopGroup就可以,但是在查询create出来的结果时,对参数MinimumFunctionalLevel不是很理解。如下new一个desktopgroup,后面跟相应的参数:PSC:\U
分类:其他好文   时间:2019-01-02 15:14:38    阅读次数:222
superset安装配置
1、安装操作系统依赖 yum -y install vim net-toolsyum upgrade python-setuptoolsyum -y install gcc gcc-c++ libffi-devel python-devel python-pip python-wheel opens... ...
分类:其他好文   时间:2019-01-02 00:03:30    阅读次数:242
c# word interop encrypt with password protect with password
public static void EncryptWithPassword(string unEncryptedWordPath, string password) { Word.Application wordApp = null; Word.Document document = null; ... ...
分类:Windows程序   时间:2019-01-01 18:52:30    阅读次数:238
817条   上一页 1 ... 26 27 28 29 30 ... 82 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!