IDEA Gradle 打包 Spring Boot 1.5x 可运行的jar文件流程
Posted 陈科肇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA Gradle 打包 Spring Boot 1.5x 可运行的jar文件流程相关的知识,希望对你有一定的参考价值。
参考:http://blog.csdn.net/ddjjll8877/article/details/60139640
build.gradle文件:
buildscript
repositories
mavenCentral()
dependencies
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar
baseName = 'gs-rest-service'
version = '0.1.0'
repositories
mavenCentral()
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.security.oauth:spring-security-oauth2")
compile("org.springframework.boot:spring-boot-starter-data-redis")
compile("org.springframework.session:spring-session")
testCompile('org.springframework.boot:spring-boot-starter-test')
compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.1")
compile 'mysql:mysql-connector-java'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.46'
打包流程图:
打开Gradle窗口->找到树节点[你的项目名称]/Tasks/build/bootRepackage->双击一下,就开始编译打包jar文件了,最终会在你项目目录下的build里找到jar文件。
使用:
双击jar文件,或者java -jar **.jar
以上是关于IDEA Gradle 打包 Spring Boot 1.5x 可运行的jar文件流程的主要内容,如果未能解决你的问题,请参考以下文章
在IDEA中如何把Gradle下的Spring boot项目打包并部署到服务器
idea gradle+springboot 构建多项目 运行 打包