自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Maven构建生命周期介绍

Maven有3个构建的生命周期:default、clean和site。default处理你的项目部署,clean处理项目清理,而site处理项目文档的生成。default生命周期有下列跟随的阶段:------validate:验证项目是正确的,所有必要的信息是可用的;------compile:编译项目的源代码;------test:用匹配的单元测试框架测试编译后的源代码。

2013-10-31 13:45:51 2072

翻译 Maven的pom.xml文件详解------Environment Settings

Issue Management使用的缺陷跟踪系统(Bugzilla,TestTrack,ClearQuest,等)信息,主要用于产生项目文档。 Bugzilla http://127.0.0.1/bugzilla/Continuous Integration Management持续构建系统配置。 continuum http:

2013-10-31 13:21:57 5804

翻译 Maven的pom.xml文件详解------More Project Information

The Basics和Build Settings定义项目的POM已经足够,但More Project Information可以用于一些信息的扩展,下面介绍More Project Information中的元素。name项目的更易读的名称。description项目的描述信息。url项目所在的url。inceptionYear项目开始日期li

2013-10-30 13:21:19 2410

翻译 Maven的pom.xml文件详解------Build Settings

根据POM 4.0.0 XSD,build元素概念性的划分为两个部分:BaseBuild(包含poject build和profile build的公共部分,见下)和poject build包含的一些高级特性。<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSch

2013-10-30 13:04:01 62393 2

翻译 Maven的pom.xml文件详解------The Basics

Maven坐标GroupId、artifactId和version构成了Maven的坐标(groupId和version可以从parent继承),指定了组件在Maven仓库中的位置。Maven中的每个组件都有一个坐标,通过这个坐标我们在自己的项目中可以设置对该组件的依赖。 ------groupId:项目属于哪个组,往往和项目所在的组织或公司存在关联; ------artifactId

2013-10-27 14:13:58 6869

翻译 Maven的pom.xml文件详解

快速预览<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.o

2013-10-27 10:53:56 2753

原创 使用maven创建项目

Archetype是Maven的一个插件,用户可以方便的使用它快速的创建Maven项目。在Maven3中,为了创建一个基于Archetype的新项目,你需要在命令行中执行mvn archetype:generate,像这样:mvn archetype:generate在回车后,项目将开始创建。从Archetype创建一个项目将执行下面3个步骤: 1)archetype的选择; 2)

2013-10-26 17:54:12 11169 1

翻译 maven设置------setting.xml文件学习

maven的配置文件为settings.xml,在下面路径中可以找到这个文件,分别为:    ------ $M2_HOME/conf/settings.xml:全局设置,在maven的安装目录下;    ------ ${user.home}/.m2/settings.xml:用户设置,需要用户手动添加,可以将安装目录下的settings.xml文件拷贝过来修改。    两个文件的关

2013-10-25 20:34:17 66183

原创 maven在win7下的安装

从maven官网(http://maven.apache.org/run-maven/index.html)下载maven压缩包(apache-maven-3.1.1-bin.zip)后,按以下步骤安装,在安装之前先确认已经安装了jdk:    1、减压apache-maven-3.1.1-bin.zip到你希望安装maven的文件夹,如:E:\maven;    2、添加M2_HOME环

2013-10-25 14:24:23 2871

原创 activiti5.10安装

1、从www.activiti.org下载最新的activiti版本,我使用的是activiti-5.10,然后减压,减压后的activiti目录结构如下:------docs------setup------------build------------files------------build.db.properties------------build.proper

2013-10-11 08:43:11 2179

hadoop-part3

The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures.

2015-08-04

hadoop-part2

The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures.

2015-08-04

hadoop-part1

hadoop-2.7.1 The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures.

2015-08-04

PersistentIdealHashTree-Java实现

PersistentIdealHashTree的Java实现

2014-04-14

linux教学课件:Advanced Programming in the Linux Environment

linux教学课件:Advanced Programming in the Linux Environment

2009-11-09

深入java虚拟机深入java虚拟机

深入java虚拟机深入java虚拟机深入java虚拟机深入java虚拟机

2009-10-24

linux一句话精彩问答

linux一句话精彩问答linux一句话精彩问答linux一句话精彩问答

2009-06-09

Linux内核结构与进程管理

Linux内核结构与进程管理Linux内核结构与进程管理

2009-06-09

空空如也

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

TA关注的人

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