码迷,mamicode.com
首页 > 编程语言 > 详细

java集成开发环境常用操作集

时间:2015-04-10 13:27:39      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

1、简单搭建maven集成开发环境

一、     Jetty安装

下载地址(包涵windows和Linux各版本,Jetty9需要JDK7):http://download.eclipse.org/jetty/

Jetty安装非常简单,只需要解压安装包即可启动Jetty服务。

JETTY_VERSION=xxx

wget http://download.eclipse.org/jetty/$JETTY_VERSION/dist/jetty-distribution-$JETTY_VERSION.tar.gz

tarxfz jetty-distribution-$JETTY_VERSION.tar.gz

cd jetty-distribution-$JETTY_VERSION

java-jar start.jar

Jetty的简单测试(我们用Jetty8):

技术分享

test.war模块里面有一个dump的Servlet,它可以查看当前请求的Request/Session/Cookie信息。http://c909511:8080/dump/info这里面返回信息非常丰富,后续可以使用此方法调试当前请求信息:

 技术分享 

二、     Jetty与Eclipse集成

1、 下载Eclipse工具:

http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/luna/SR1/eclipse-jee-luna-SR1-win32-x86_64.zip

2、  安装Jetty组件

 技术分享

 技术分享

3、  配置Jetty

 技术分享

 技术分享

4、  配置完成后启动Jetty服务

 技术分享

三、Maven与Eclipse集成

1、 下载Maven工具http://maven.apache.org/download.html

2、 安装Maven Integration for Eclipse插件

 技术分享

3、  安装Maven;

a)         解压Maven到本地目录,设置环境变量;

                                       i.              MAVEN_HOME为:D:/tools/apache-maven-3.2.1,将bin设置到PATH,在PATH末尾添加:;%MAVEN_HOME%/bin;

                                     ii.              测试MAVEN是否设置成功,在Windows终端输入:mvn –v

 技术分享

b)         设置Maven本地仓库

                                       i.              在D:\tools\apache-maven-3.2.1\conf\settings.xml文件中修改localRepository节点值为D:\study\maven\jar,制定本地仓库地址;

 技术分享

                                     ii.              配置本地仓库nexus(可选)

Nexus下载地址:http://download.sonatype.com/nexus/oss/nexus-2.5.1-bundle.zip

安装Nexus只需解压配置即可运行

配置Nexus服务

 技术分享

启动Nexus服务

 技术分享

登陆Nexus

 技术分享

配置Nexus中心仓库

 技术分享

Nexus+Maven配置

 技术分享

<mirrors>
     <mirror>
           <id>nexus</id>
           <mirrorOf>*</mirrorOf>
           <name>Nexus Mirror</name>
           <url>http://maven.oschina.net/content/groups/public</url>
       </mirror>

  </mirrors>
  
 
  <profiles>
        <profile>
      <id>nexus</id>
      <repositories>
        <repository>
          <id>nexus</id>
          <name>Nexus</name>
          <url>http://localhost:8082/nexus/content/groups/public</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>nexus</id>
          <name>Nexus</name>
          <url>http://localhost:8082/nexus/content/groups/public</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>      
        </pluginRepository>      
      </pluginRepositories>
    </profile>
  </profiles>

  <!-- activeProfiles
   | List of profiles that are active for all builds.
   |
  <activeProfiles>
    <activeProfile>alwaysActiveProfile</activeProfile>
    <activeProfile>anotherAlwaysActiveProfile</activeProfile>
  </activeProfiles>
  -->
  <!--激活配置-->
    <activeProfiles>
        <activeProfile>nexus</activeProfile>
    </activeProfiles>

 

4、  eclipse配置Maven;

a)         设置Maven的Installations

 技术分享

b)         设置Maven的User Settings

 技术分享

                  

5、  导入项目工程

a)         在Myeclipse中选择import…依次导入项目工程;

 技术分享

b)         设置启动各个工程的Maven构建

 技术分享

c)         完成环境搭建,启动看效果

 技术分享

--------开发环境准备完毕end------------------------------

 

java集成开发环境常用操作集

标签:

原文地址:http://www.cnblogs.com/huige-you/p/4414166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!