jar(2)
-
이클립스에서 SpringBoot Gradle JAR파일 배포 및 실행 방법
1. build.gradle 설정 buildscript { ext { buildVersion = "0.0.1-SNAPSHOT" springBootVersion = '1.5.8.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' //create a single J..
2018.04.28 -
JAR 파일 만들기 (Class-Path 설정 및 개념잡기)
추가 (20160801)/app/service/lib/jdk8/bin/java -server -Xms1024m -Xmx1024m -XX:NewSize=128m -XX:MaxNewSize=128m -XX:MaxPermSize=128m -XX:-HeapDumpOnOutOfMemoryError -XX:ParallelGCThreads=2 -XX:-UseConcMarkSweepGC -XX:+PrintGC -Dspring.profiles.type=ias -Dspring.profiles.active=pp -classpath /app/service/batch:/app/service/batch/lib/* net.minigate.mslp2.fd.service.ias.Batch 과제 : 아침마다 class 파일을 batch..
2013.11.13