自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 资源 (33)
  • 收藏
  • 关注

原创 设计模式之策略模式

设计模式之策略模式

2015-01-07 06:50:36 351

转载 Top 10 Mistakes Java Developers Make

This list summarizes the top 10 mistakes that Java developers frequently make.#1. Convert Array to ArrayListTo convert an array to an ArrayList, developers often do this:ListSt

2014-05-29 22:55:24 673

转载 读取clob格式文件

create table a (content clob);select content from a;显示的内容为cotent中的部分内容和乱码,因为a是clob类型,不能直接从select的结果中显示出来,需要借用Oracle系统的包dbms_lob来处理,才能正确显示出来content的内容。select dbms_lob.substr(content) from a

2014-04-27 21:35:33 1104

转载 Testing SQL queries with Spring and DbUnit, part 1

SQL queries or any sort of persistence components are very common in enterprise applications. More generally, persistence is a critical part in applications and that's why it should be thoroughly test

2013-12-17 21:37:29 929

转载 parsing XML using DOM, SAX and StAX Parser in Java

parsing XML using DOM, SAX and StAX Parser in Javaby Mohamed Sanaulla on May 27th, 2013 | Filed in: Core Java Tags: XMLI happen to read through a chapter on XML parsing and building APIs

2013-12-13 00:55:38 814

转载 Generics Tutorial – Example Class, Interface, Methods, Wildcards and much more

Generics Tutorial – Example Class, Interface, Methods, Wildcards and much moreby Pankaj Kumar on July 31st, 2013 | Filed in: Core Java Tags: GenericsGenerics is one of the core feature o

2013-12-13 00:26:51 783

转载 Decoding Java.Lang.OutOfMemoryError: PermGen Space

One of the least understood areas by Java Developers is garbage collection. Java Developers feel JVM takes care of garbage collection and they need not worry about memory allocation, deallocation etc.

2013-12-12 01:02:09 636

转载 Reading/writing excel files in java : POI tutorial

If you are building a software for HR or finance domain, there is usually requirement for generating excel reports which are usually across management levels. Apart from reports, you can expect input

2013-12-08 23:15:27 1540

原创 springsource下载地址

http://download.springsource.com/release/STS/3.4.0/dist/e4.3/spring-tool-suite-3.4.0.RELEASE-e4.3.1-win32-installer.exe

2013-11-29 12:49:31 1847

转载 JUnit 4 with Hamcrest

JUnit 4 with HamcrestHamcrest and open source library of nice syntactic matchers that was pulled into JUnit 4 as in 2007. My anecdotal evidence having mentored a number of development groups o

2013-11-29 12:43:18 681

转载 Unit Testing Struts 2 Action Classes Posted At : September 4, 2009 10:12 AM | Posted By : Bruce Phil

Unit Testing Struts 2 Action ClassesPosted At : September 4, 2009 10:12 AM | Posted By : Bruce PhillipsRelated Categories: JavaIntroductionI've been reading JUnit in Action, Second Editi

2013-11-28 01:52:15 1025

转载 Unit Testing A Struts 2 Action Class - Struts 2 JUnit Plugin

IntroductionIn my previous article on unit testing Struts 2 Action classes I discussed and demonstrated how to write unit tests that used classes provided by some other developers. After resea

2013-11-28 01:51:35 1857

转载 How to Test Struts 2 Actions Without a Container

I recently worked on a project that used Struts 2.1 and the Spring framework integration plug-in. There are sporadic examples of how to test Struts actions in this context but none of them seemed to

2013-11-28 01:48:47 502

转载 struts test

http://blog.csdn.net/theoffspring/article/details/6314196

2013-11-28 01:13:33 527

原创 applicationcontext数据源配置本地路径

Spring,ibatis等获取xml文件中路径值是通过调用java.net.URL方法实现,路径名书写格式要按照java.net.URL的格式要求来书写。附java.net.URL路径格式:Java Networking: URL's to Local FilesThe URL class can also be used to access files in the

2013-11-27 23:31:47 845

转载 Unit Testing DAO Classes with JUnit, Spring

Unit Testing DAO Classes with JUnit, SpringPosted: December 11, 2007 | Author: josh | Filed under: Java |Comments OffUnit testing data access code can be quite challenging – we need to be

2013-11-20 00:34:34 793

转载 Chapter 8. Testing

Chapter 8. Testing8.1. IntroductionThe Spring team considers developer testing to be an absolutely integral part of enterprise software development. A thorough treatment of t

2013-11-20 00:06:03 850

转载 myeclipse导入eclipse

myeclipse 项目导入至eclipse中不能识别为web项目,也不能部署。 1.请首先确保你的eclipse是javaee版本的,或者已经安装看wtp插件 2.然后修改eclipse工程下的.project文件: 在 中加入 Java代码  org.eclipse.wst.common.project.facet.core.natur

2013-11-19 22:54:36 906

转载 Junit

http://www.ibm.com/developerworks/cn/education/java/j-junit4/

2013-09-29 00:28:24 468

转载 Java Regex Tutorial

Java and Regular ExpressionsThis tutorial introduces the usage of regular expressions and describers their with Java. It also provides several Java regular expression examples.Table of C

2013-09-21 21:05:50 794

转载 VIM中实现JavaScript代码提示功能

原文地址:http://www.cnblogs.com/xiazh/archive/2012/06/06/2538173.htmlJavaScript是web脚本语言。另一方面Vim是许多编程人员的首选编辑器。Vim能公丰富,可以对JavaScript的语法进行自动完成。为了能够使用这个特性,你必须先要开启它。在Vim的命令模式下输入如下内容来开启这个特性:set om

2013-09-13 12:31:55 675

vfrabrictcserver

vraabric tc server

2014-05-20

vfrabrictcserver

vraabric tc server

2014-05-20

insiight spring

insiight spring

2014-05-20

insight dashbord

insight dashbord

2014-05-20

setup-cyospr

setup-cyospr

2014-03-20

croyt styer

croyt styer

2014-03-20

jsTree API

jsTree API

2014-03-17

regexbuddy

maven_rep.rar

2014-01-06

avascript_The_Definitive_Guide

Javascript_The_Definitive_Guide_6th

2013-11-30

repostorie.jar

javascript:document.getElementById('downLoad').action='/download.php?fileid=15775884';downishare('0');javascript:document.getElementById('downLoad').action='/download.php?fileid=15775884';downishare('0');javascript:document.getElementById('downLoad').action='/download.php?fileid=15775884';downishare('0');javascript:document.getElementById('downLoad').action='/download.php?fileid=15775884';downishare('0');

2013-11-26

repository.part1.rar

repository.part1.rar

2013-11-25

jpetstore-ibatis

jpetstore-ibatis

2013-11-25

subeclipse

subeclipse site-1.10.3.zip

2013-11-15

subeclipse1.8

SUBECLIPSE UPDATE SITE

2013-11-15

spket for javascript

Spket IDE is powerful toolkit for JavaScript and XML development.... Spket IDESpket IDE is powerful toolkit for JavaScript and XML development. The powerful...

2013-09-12

javascriptdt

Javascript Debug Toolkit is a software can debug javascript in ie,firefox,safari,chrome,opera,mobile ie browser,mobile opera browser and so on .It works in all the browser support ajax. Javascript Debug Toolkit 2.2.0 is published! update site URL: http://jsdt.googlecode.com/svn/trunk/org.ayound.js.debug.update Browser support of debug tools software\browser IE Firefox chrome opera safari Mobile Browser Other VS.NET Firebug/Venkman Aptana Netbeans MyEclipse JSDT There are tow version of jsdt. stand alone¶Javascript Debug Toolkit s0.5 is a Green-free installation software. JSDT can

2013-09-12

Head FIrst JavaScript

So you're ready to make the leap from writing HTML and CSS web pages to creating dynamic web applications. You want to take your web skills to the next level. And you're finally ready to add "programmer" to the resume. It sounds like you're ready to learn

2013-09-06

福布斯电脑革命史

本书主要讲的是先驱与海盗--计算器与计算机、蓝色巨人---大型计算机、量子跃迁---晶体管与半导体、比特--存储器、微型计算机与鼠标、芯片--集成电路与微型计算机与鼠标、机器构成---电子组装产品和微型电子计算机、线路天才---苹果计算机、个人计算机--IBM个人计算机、核心---Windows、无线电波---MCI和蜂窝电话、万维网---网络与因特网等内容。

2013-08-29

算法导论英文版

《算法导论》原书名——《Introduction to Algorithms》,是一本十分经典的计算机算法书籍,与高德纳(Donald E.Knuth)的《计算机程序设计艺术》(《The Art Of Computer Programming》)相媲美。 《算法导论》由Thomas H.Cormen、Charles E.Leiserson、Ronald L.Rivest、Clifford Stein四人合作编著(其中Clifford Stein是第二版开始参与的合著者)。本书的最大特点就是将严谨性和全面性融入在了一起。

2013-08-29

Algorithms 4th Edition

《算法(第4版)》全面讲述算法和数据结构的必备知识,具有以下几大特色。 1、 算法领域的经典参考书:Sedgewick畅销著作的最新版,反映了经过几十年演化而成的算法核心知识体系 2、内容全面:全面论述排序、搜索、图处理和字符串处理的算法和数据结构,涵盖每位程序员应知应会的50种算法 3、全新修订的代码:全新的Java实现代码,采用模块化的编程风格,所有代码均可供读者使用 4、与实际应用相结合:在重要的科学、工程和商业应用环境下探讨算法,给出了算法的实际代码,而非同类著作常用的伪代码 5、富于智力趣味性:简明扼要的内容,用丰富的视觉元素展示的示例,精心设计的代码,详尽的历史和科学背景知识,各种难度的练习,这一切都将使读者手不释卷 6、科学的方法:用合适的数学模型精确地讨论算法性能,这些模型是在真实环境中得到验证的 7、与网络相结合:配套网站algs4.cs.princeton.edu提供了本书内容的摘要及相关的代码、测试数据、编程练习、教学课件等资源

2013-08-29

visual assist x v10.6

visual assist x 含破解文件。

2012-12-25

zkui_windows

zkui_win_20160203.zip

2016-05-28

Head First Design Pattern

Head First Design Pattern

2014-12-29

DejaVuSansMono

DejaVuSansMono

2014-08-15

exvim plugin

power

2014-08-15

sts-bundle.7z.007

Code Assists All Over the Place It doesn't matter whether you are writing Spring XML configuration files or implement JavaConfig Spring apps, whether you are using the core Spring framework alone or together with all the various additional Spring projects, the Spring Tool Suite provides you with meaningful content-assist all over the place, together with quick-fixes for common errors and problems. You will never program with Spring without those code-assists anymore.

2014-06-19

sts-bundle.7z.006

Refactoring Support for your Spring App Refactoring support is one of the most important parts of todays software engineering. Therefore the Spring Tool Suite provides advanced support for refactoring Spring applications. Not only the well-known Java refactorings are reflected in your Spring config files, the IDE adds new refactorings for Spring elements (like renaming of Spring beans, for example).

2014-06-19

sts-bundle.7z.005

Comprehensive Validations for your Spring Configuration Because the Spring Tool Suite understands your Spring projects, it provides a comprehensive set of validations that are being applied automatically. Those validations indicate errors in your configurations directly within the IDE, long before you actually run the app. Finding problems and misconfigurations gets a lot easier.

2014-06-19

sts-bundle.7z.004

Understands your Spring App The Spring Tool Suite understands your Spring projects. It parses your configuration files and displays detailed information about the beans that are being defined, their dependencies among each other, used namespaces, and extracts overviews for certain stereotypes like request controllers, aspects, services, and more.

2014-06-19

sts-bundle.7z.003

The Spring Tool suite supports application targeting to local, virtual and cloud-based servers. It is freely available for development and internal business operations use with no time limits, fully open-source and licensed under the terms of the Eclipse Public License.

2014-06-19

sts-bundle.7z.002

Included with the Spring Tool Suite is the developer edition of Pivotal tc Server, the drop-in replacement for Apache Tomcat that's optimized for Spring. With its Spring Insight console, tc Server Developer Edition provides a graphical real-time view of application performance metrics that lets developers identify and diagnose problems from their desktops.

2014-06-19

Spring tool suite 001

The Spring Tool Suite is an Eclipse-based development environment that is customized for developing Spring applications. It provides a ready-to-use environment to implement, debug, run, and deploy your Spring applications, including integrations for Pivotal tc Server, Pivotal Cloud Foundry, Git, Maven, AspectJ, and comes on top of the latest Eclipse releases.

2014-06-19

insight-vfabric-tc-server-agent

insight-vfabric-tc-server-agent

2014-05-20

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除