摘要: Spring Integration 配置 ... 阅读全文
posted @ 2014-06-16 15:09 bruceHuang 阅读(3992) 评论(0) 推荐(0) 编辑
摘要: 5.1、处理器拦截器简介Spring Web MVC的处理器拦截器(如无特殊说明,下文所说的拦截器即处理器拦截器)类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。5.1.1、常见应用场景1、日志记录:记录请求信息的日志,以便进行信息监控、信息统计、计算PV(Page ... 阅读全文
posted @ 2014-06-16 14:00 bruceHuang 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 1,Spring MVC File Upload Examplehttp://www.mkyong.com/spring-mvc/spring-mvc-file-upload-example/2,Spring MVC Upload File Using jQuery.ajax | FormData | HTML Formhttp://hmkcode.com/spring-mvc-upload-file-ajax-jquery-formdata/3, Online IDEhttp://www.compileonline.com/compile_java_online.php4,CloudIDEh 阅读全文
posted @ 2014-01-14 12:49 bruceHuang 阅读(191) 评论(0) 推荐(0) 编辑
摘要: umask 022alias vim="/pd/vim/7.1/bin/vim"if [ -e /usr/bin/vim ]; then alias vim="/usr/bin/vim"fialias ll="ls -l"alias l='ls -altrF'alias c='clear'#alias pssuez="/usr/ucb/ps -auxwwww | grep hh"alias pssuez="/bin/ps -auxwwww | grep hh"PS 阅读全文
posted @ 2013-09-11 19:16 bruceHuang 阅读(260) 评论(0) 推荐(0) 编辑
摘要: http://gitbook.liuhui998.com/4_2.htmlmergerebase 阅读全文
posted @ 2013-07-12 23:21 bruceHuang 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 1, 添加id列-- ###############################################-- add ID column for XXXXXXTABLE-- ###############################################declare v_cnt binary_integer := 0;begin select count(1) into v_cnt from user_tab_columns e where e.table_name = 'XXXXXXTABLE' and e.column_name... 阅读全文
posted @ 2013-07-04 16:30 bruceHuang 阅读(319) 评论(0) 推荐(0) 编辑
摘要: oracle过程中动态语句实现一般的PL/SQL程序设计中,在DML和事务控制的语句中可以直接使用SQL,但是DDL语句及系统控制语句却不能在PL/SQL中直接使用,要想实现在PL/SQL中使用DDL语句及系统控制语句,可以通过使用动态SQL来实现。首先我们应该了解什么是动态SQL,在Oracle数据库开发PL/SQL块中我们使用的SQL分为:静态SQL语句和动态SQL语句。所谓静态SQL指在PL/SQL块中使用的SQL语句在编译时是明确的,执行的是确定对象。而动态SQL是指在PL/SQL块编译时SQL语句是不确定的,如根据用户输入的参数的不同而执行不同的操作。编译程序对动态语句部分不进行处理 阅读全文
posted @ 2013-07-03 23:28 bruceHuang 阅读(1391) 评论(0) 推荐(0) 编辑
摘要: 最近闲着无事,写一个Demo(Spring - Hibernate - Maven), 供以后查询。1, Pom file<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 阅读全文
posted @ 2013-05-31 10:06 bruceHuang 阅读(3036) 评论(0) 推荐(0) 编辑
摘要: 代理 <proxies> <proxy> <id>xxxxxx.proxy</id> <active>true</active> <protocol>http</protocol> <username>someone</username> <password>ask someone</password> <host>inetproxy3.ldn.xxxxxx</host> <port>8080</port> 阅读全文
posted @ 2013-05-23 16:12 bruceHuang 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1, Sonatype Nexushttp://repository.sonatype.org/2, Jarvanahttp://www.jarvana.com/3, MVNbrowserhttp://www.mvnbrowser.com4, MVNrepositoryhttp://mvnrepository.com/ 阅读全文
posted @ 2013-05-23 09:15 bruceHuang 阅读(3448) 评论(1) 推荐(0) 编辑