自定义博客皮肤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 359

转载 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 684

转载 读取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 1116

转载 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 957

转载 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 827

转载 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 791

转载 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 660

转载 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 1557

原创 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 1862

转载 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 697

转载 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 1050

转载 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 1875

转载 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 511

转载 struts test

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

2013-11-28 01:13:33 539

原创 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 864

转载 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 803

转载 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 875

转载 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 916

转载 Junit

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

2013-09-29 00:28:24 479

转载 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 803

转载 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 690

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

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

insight-vfabric-tc-server-agent

insight-vfabric-tc-server-agent

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

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

visual assist x v10.6

visual assist x 含破解文件。

2012-12-25

空空如也

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

TA关注的人

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