代码改变世界

Spring Security 验证流程

2012-12-26 09:40 by Paddle Zhou, 291 阅读, 0 推荐, 收藏, 编辑
摘要:Authentication in a Web ApplicationNow let's explore the situation where you are using Spring Security in a web application (withoutweb.xmlsecurity enabled). How is a user authenticated and the security context established?Consider a typical web application's authentication process:You visit 阅读全文

在线生成时序图工具

2012-11-23 09:43 by Paddle Zhou, 11672 阅读, 1 推荐, 收藏, 编辑
摘要:网站 http://www.websequencediagrams.com/支持在线生成时序图,的确很方便,很funny直接编写如下代码就能生成title移动客户端流程Mobile->Server:验证noterightofServer:用SpringSecurity验证Server->Mobile:返回验证通过信息Mobile->Server:AjaxRequestServer->Mobile:jsonback 阅读全文

2012年10月29日 java关键字 final ( final 字段 final 方法 final 类)

2012-10-30 15:38 by Paddle Zhou, 172 阅读, 0 推荐, 收藏, 编辑
摘要:2012年10月29日 java关键字 final ( final 字段 final 方法 final 类) 2012年10月29日 final字段:final引用类型,只表示该变量的引用不改变.final值类型,改变量不改变final方法:相当于C#的sealed,子类不能重写这个方法final方法:相当于C#的sealed,子类不能继承这个类通过 为知笔记 发布 阅读全文

Eclipse插件管理

2012-09-11 20:30 by Paddle Zhou, 172 阅读, 0 推荐, 收藏, 编辑
摘要:菜单Help->About Eclipse Installation Details 可以更新删除插件通过 为知笔记 发布 阅读全文

[转]SecureCRT的详细使用教程

2012-07-16 17:04 by Paddle Zhou, 545 阅读, 0 推荐, 收藏, 编辑
摘要:原文链接:http://www.heibai.net/book/html/wangluogongju/yuanchengkongzhi/2009/0911/1081.html#VanDyke CRT 和 VanDyke SecureCRT是最常用的终端仿真程序,简单的说就是Windows下登录UNIX或Liunx服务器主机的软件。二者不同的是SecureCRT支持SSH(SSH1和SSH2)。本文主要介绍SecureCRT的使用方法和技巧。【概念解释】什么是SSH?SSH的英文全称是Secure Shell传统的网络服务程序,如:ftp和telnet在本质上都是不安全的,因为它们在网络上用明文 阅读全文

项目从旧Nhibernate类库升级到新版本Nhibernate类库

2011-07-30 22:20 by Paddle Zhou, 321 阅读, 0 推荐, 收藏, 编辑
摘要:从旧项目(.net 1.1)升级到.net 4.0实体类属性都没有virtual熟悉,运行会报错。如果一个一个实体类修改,工作量挺大的,幸好我们有开源的virtuosity,帮助把属性改成virtual修改的原则:What it actually does to your assemblySelects all members that meet the following criteriafrom nonsealedclassesnonstaticmembersnonabstractmembersnonprivatemembersnonvirtualmembersChange them to 阅读全文

转: 从vs2003升级到vs2005 --- Upgrading VS 2003 Web Projects to be VS 2005 Web Application Projects

2011-04-14 15:42 by Paddle Zhou, 333 阅读, 1 推荐, 收藏, 编辑
摘要:Upgrading VS 2003 Web Projects to be VS 2005 Web Application ProjectsThe below tutorial helps explain how you can now use the VS 2005 Web Application Project to more easily migrate existing web projects in VS 2003 to VS 2005. Migrating from VS 2003 to VS 2005 using the Web Application ProjectThere a 阅读全文

转:VirtualBox虚拟机网络设置(四种方式)

2011-04-07 17:46 by Paddle Zhou, 394 阅读, 0 推荐, 收藏, 编辑
摘要:原文出处:http://www.xcar.com.cn/bbs/viewthread.php?tid=12328794VirtualBox虚拟机网络设置(四种方式)VirtualBox是一款SUN出品的非常优秀的虚拟机程序,版本也非常齐全,你可以在官网上找到适合各种操作系统平台的版本。这里我先给大家大致讲解下VBox的网络配置及应用。VirtualBox的提供了四种网络接入模式,它们分别是:1、NAT 网络地址转换模式(NAT,Network Address Translation)2、Bridged Adapter 桥接模式3、Internal 内部网络模式4、Host-only Adapt 阅读全文

在x64 Win7下引用 Sqlite注意

2011-02-28 18:03 by Paddle Zhou, 230 阅读, 0 推荐, 收藏, 编辑
摘要:要引用要引用相应64位Sqlite才可以编译通过 阅读全文

x64win7下连接oracle问题解决

2011-02-11 17:29 by Paddle Zhou, 533 阅读, 0 推荐, 收藏, 编辑
摘要:软件环境: 1,windows 7 home x64 2,  Microsoft Visual Studio 2010 ultimate 3,  oracle 10g 数据库   问题: 1,开始用旧版本的oracle10g client连接oracle是可以的,但是用vs调用web developer server调试的时候,就提示TNS解析不了。原因是web developer server的路径在Program Files (x86)路径下,跟oracle client连通的时候有误。 解决方法可参考如下文章: 解決 阅读全文