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

spring boot1.3之安装

时间:2015-05-17 15:25:59      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

spring boot允许你使用“classic”Java开发工具或者使用命令行工具。

1. 对java开发人员的安装说明

你可以跟使用java标准库一样来使用spring boot。把适当的spring-boot-*.jar放到classpath中,spring boot并不需要任何其他的集成工具,所以你能使用任何IDE和代码编辑器。spring boott程序并不是什么特殊的应用程序,你可以运行并调试你的任何java程序。虽然你可以手工copy spring boot的jar包,但我们推荐你使用构建工具,它支持依赖管理(比如:maven或gradle)。

1.1 使用maven构建

spring boot1.3是兼容apache maven 3.2或更高版本的。spring boot依赖使用org.springframework.boot.groupId。通常你的maven文件配置继承自spring-boot-starter-parent工程并且定义了一个或多个依赖。spring boot也提供了一个可选的maven插件来创建可执行的jar。下例是一个典型的pom.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.example</groupId>
    <artifactId>myproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <!-- Inherit defaults from Spring Boot -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.0.BUILD-SNAPSHOT</version>
    </parent>
    <!-- Add typical dependencies for a web application -->
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
    <!-- Package as an executable jar -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    <!-- Add Spring repositories -->
    <!-- (you don‘t need this if you are using a .RELEASE version) -->
    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
            <snapshots><enabled>true</enabled></snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </pluginRepository>
    </pluginRepositories>
</project>

使用spring-boot-starter-parent创建spring boot项目是一个好方法,但它不是任何时候都可行。有些时候你需要继承不同的父POM,或者你不喜欢默认提示的pom。

1.2 使用gradle来构建

略,我不使用这个,大家要了解可以看文档。

2. 安装spring boot CLI(spring boot命令行)

略,我不使用这个,大家要了解可以看文档。

spring boot1.3之安装

标签:

原文地址:http://my.oschina.net/fhd/blog/415889

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