diff --git a/build.gradle b/build.gradle index 33920ac..1b1a84e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,22 +1,28 @@ plugins { id 'org.springframework.boot' version '2.6.6' id 'io.spring.dependency-management' version '1.0.11.RELEASE' - id 'java' } -group = 'com.roy' -version = '0.0.1-SNAPSHOT' -sourceCompatibility = '11' +apply plugin: 'java-library' +apply plugin: 'org.springframework.boot' +apply plugin: 'io.spring.dependency-management' -repositories { - mavenCentral() -} +allprojects { + sourceCompatibility = 11.0 -dependencies { - implementation 'org.springframework.boot:spring-boot-starter' - testImplementation 'org.springframework.boot:spring-boot-starter-test' -} + apply plugin: 'java-library' + apply plugin: 'org.springframework.boot' + apply plugin: 'io.spring.dependency-management' -tasks.named('test') { - useJUnitPlatform() -} + group = 'com.roy' + version = '0.0.1-SNAPSHOT' + + repositories { + mavenLocal() + mavenCentral() + } + + jar { + enabled(false) + } +} \ No newline at end of file diff --git a/document/core/multi_module_basic.md b/document/core/multi_module_basic.md new file mode 100644 index 0000000..694a885 --- /dev/null +++ b/document/core/multi_module_basic.md @@ -0,0 +1,194 @@ +Spring Cloud는 여러 Micro Service들이 합쳐져서 하나의 서비스로 작동한다. +Spring Cloud를 알아보기 전에 이번 장에서는 여러 Micro Service들을 관리하기 위한 Multi Module을 설정하는 방법에 대해서 알아본다. +Multi Module로 프로젝트를 생성하는 방법은 여러가지가 있으며 필자가 주로 사용했던 방법에 대해서 기록도 할겸 작성해본다. + +--- + +### Project Structure + +이번에 필자가 구현하고자 하는 Multi Module 프로젝트의 구조는 아래와 같다. + +![](multi_module_basic_image/multi-module-structure.png) + +서비스 레이어 모듈들이 공통적으로 사용하는 도메인 정보를 가지고 있는 domain 모듈이 있다. +또한 공통 함수와 같은 공통 처리 로직을 가지고 있는 util 모듈이 있다. +새로운 서비스 레이어 모듈이 추가되면 domain, util 모듈을 사용할 수 있도록 구성한다. +users, orders, catalogs 서비스들은 domain, util 의존성을 가지고 있다. + +--- + +### Multi Module 구성 + +#### 1. 기본 프로젝트 생성 + +기본 프로젝트를 생성하는 방법은 [spring initializr](https://start.spring.io)을 통해 쉽게 생성 가능하다. +혹시 스프링 부트가 친숙하지 않다면 이전에 필자가 작성한 [스프링 부트 프로젝트 생성](https://imprint.tistory.com/3?category=1067500) 을 확인하도록 한다. +필자는 기본 프로젝트의 이름을 spring-cloud로 생성하였다. 기본 프로젝트만 생성되었을 때의 구조는 아래와 같다. +document 디렉토리는 필자가 글을 쓰기위하여 따로 추가한 디렉토리이며 이외의 out 디렉토리는 프로젝트가 정상적으로 설정되었는지 실행하였을 때 생성된 디렉토리이다. + +![](multi_module_basic_image/default-project-structure.png) + +#### 2. 새로운 모듈 추가 선택 + +루트 프로젝트를 우클릭 -> New -> Module을 선택한다. + +![](multi_module_basic_image/select-add-module.png) + +#### 3. Users 프로젝트 정보 입력 + +Spring Intializr를 선택하고 필요한 정보를 입력한다. + +![](multi_module_basic_image/enter-module-info.png) + + +#### 4. Users 의존성 선택 + +기본적으로 추가할 의존성을 선택한다. +필자의 경우 추후 수동으로 선택하기 위해 의존성을 선택하지 않았다. + +![](multi_module_basic_image/select-dependency.png) + +의존성 선택을 마치면 새로운 모듈이 추가될 것이다. + +![](multi_module_basic_image/created-users-module.png) + +#### 5. 2,3,4 과정을 반복하여 domain과 util 모듈을 추가한다. + +![](multi_module_basic_image/created-domain-util-module.png) + +#### 6. Root 디렉토리의 build.gradle 파일 수정 + +sourceCompatibility와 group은 프로젝트를 생성할 때 선택한 자바 버전과 group 명을 입력한다. +Root 디렉토리는 의존성 관리를 하지 않기 때문에 의존성 관련 부분을 전부 제거하였다. + +```bash +plugins { + id 'org.springframework.boot' version '2.6.6' + id 'io.spring.dependency-management' version '1.0.11.RELEASE' +} + +apply plugin: 'java-library' +apply plugin: 'org.springframework.boot' +apply plugin: 'io.spring.dependency-management' + +allprojects { + sourceCompatibility = 11.0 + + apply plugin: 'java-library' + apply plugin: 'org.springframework.boot' + apply plugin: 'io.spring.dependency-management' + + group = 'com.roy' + version = '0.0.1-SNAPSHOT' + + repositories { + mavenLocal() + mavenCentral() + } + + jar { + enabled(false) + } +} +``` + +#### 7. Root 디렉토리의 settings.gradle을 수정한다. + +우리가 생성한 모듈들을 등록시켜 두었다. + +```bash +rootProject.name = 'springcloud' +include("domain") +include("util") +include("users") +``` + +#### 8. 불필요 파일을 삭제한다. + +모듈을 생성하면 기본적으로 .gitignore와 HELP.md 파일이 생성된다. +.gitignore는 루트 디렉토리에서 관리하므로 전부 제거해주도록 한다. +domain 모듈과 users, util 모듈 모두 제거해주도록 한다. + +![](multi_module_basic_image/remove-unessesary-files.png) + +#### 9. gradle 수정 + +IntelliJ 우측에 gradle 버튼을 누르고 domain, users, util을 지워주도록 한다. +Root 디렉토리의 settings.gradle에 추가했기 때문에 불필요하다. + +![](multi_module_basic_image/remove-delete-module.png) + +#### 9. 모듈 내의 build.gradle 수정 + +수정하기 전에 모든 내용을 지우고 아래의 내용만 추가한다. + +domain 프로젝트의 build.gradle을 아래와 같이 수정한다. + +```bash +jar { + enabled = true + archivesBaseName = 'domain' +} +``` + +util 프로젝트의 build.gradle을 아래와 같이 수정한다. + +```bash +jar { + enabled = true + archivesBaseName = 'util' +} +``` + +#### 10. users 모듈 build.gradle 수정 + +users가 domain 모듈과 util 모듈의 의존성을 가질 수 있도록 users의 build.gradle을 수정한다. +모든 내용을 지우고 아래의 내용만 추가하도록 한다. +정상적으로 설정이 완료되었는지 확인하기 위해 test를 위한 라이브러리를 추가하였다. + +```bash +dependencies { + implementation(project(":domain")) + implementation(project(":util")) + + implementation("org.springframework.boot:spring-boot-starter") + testImplementation("org.springframework.boot:spring-boot-starter-test") +} +``` + +#### 11. 정상작동 확인 + +domain과 util 모듈에 테스트를 위한 클래스를 생성한다. +Domain과 Util 모듈은 실행되는 모듈이 아닌 공통 관심사를 모아두는 모듈이므로 실행될 필요는 없다. +DomainApplication과 UtilApplication파일을 삭제해주도록 한다. + +![](multi_module_basic_image/add-test-class.png) + +users 모듈에 테스트 코드를 작성한다. + +```java +class DependencyTest { + @Test + @DisplayName("멀티 모듈 정상작동 테스트") + void multiModuleTest() { + assertDoesNotThrow(() -> { + DomainModuleClazz domainModuleClazz = new DomainModuleClazz(1L); + UtilModuleClazz utilModuleClazz = new UtilModuleClazz(1L); + assertNotNull(domainModuleClazz); + assertNotNull(utilModuleClazz); + }); + } +} +``` + +Domain 모듈과 Util 모듈의 객체를 생성할 때 예외가 발생하지 않아야하며 생성된 객체는 Null이 아니라는 테스트 코드를 만들었고 결과는 성공이다. + +--- + +지금까지 Multi Module 프로젝트를 생성하는 방법에 대해서 알아보았다. +글이 길어져서 라이브러리 관련된 부분은 작성하지 않았다. 이 부분은 다음 장에서 다루도록 한다. + +--- + +**참고한 자료** +- https://techblog.woowahan.com/2637/ \ No newline at end of file diff --git a/document/core/multi_module_basic.svg b/document/core/multi_module_basic.svg new file mode 100644 index 0000000..c18c2c3 --- /dev/null +++ b/document/core/multi_module_basic.svg @@ -0,0 +1,4 @@ + + + +
spring-cloud
spring-cloud
domain
domain
util
util
users service
users service
catalogs service
catalogs service
orders service
orders service
Viewer does not support full SVG 1.1
\ No newline at end of file diff --git a/document/core/multi_module_basic_image/add-test-class.png b/document/core/multi_module_basic_image/add-test-class.png new file mode 100644 index 0000000..9ce346d Binary files /dev/null and b/document/core/multi_module_basic_image/add-test-class.png differ diff --git a/document/core/multi_module_basic_image/created-domain-util-module.png b/document/core/multi_module_basic_image/created-domain-util-module.png new file mode 100644 index 0000000..dced859 Binary files /dev/null and b/document/core/multi_module_basic_image/created-domain-util-module.png differ diff --git a/document/core/multi_module_basic_image/created-users-module.png b/document/core/multi_module_basic_image/created-users-module.png new file mode 100644 index 0000000..b120899 Binary files /dev/null and b/document/core/multi_module_basic_image/created-users-module.png differ diff --git a/document/core/multi_module_basic_image/default-project-structure.png b/document/core/multi_module_basic_image/default-project-structure.png new file mode 100644 index 0000000..1ab2361 Binary files /dev/null and b/document/core/multi_module_basic_image/default-project-structure.png differ diff --git a/document/core/multi_module_basic_image/enter-module-info.png b/document/core/multi_module_basic_image/enter-module-info.png new file mode 100644 index 0000000..522dd0d Binary files /dev/null and b/document/core/multi_module_basic_image/enter-module-info.png differ diff --git a/document/core/multi_module_basic_image/multi-module-structure.png b/document/core/multi_module_basic_image/multi-module-structure.png new file mode 100644 index 0000000..c19a212 Binary files /dev/null and b/document/core/multi_module_basic_image/multi-module-structure.png differ diff --git a/document/core/multi_module_basic_image/remove-delete-module.png b/document/core/multi_module_basic_image/remove-delete-module.png new file mode 100644 index 0000000..4361cd3 Binary files /dev/null and b/document/core/multi_module_basic_image/remove-delete-module.png differ diff --git a/document/core/multi_module_basic_image/remove-unessesary-files.png b/document/core/multi_module_basic_image/remove-unessesary-files.png new file mode 100644 index 0000000..e2e5bb8 Binary files /dev/null and b/document/core/multi_module_basic_image/remove-unessesary-files.png differ diff --git a/document/core/multi_module_basic_image/select-add-module.png b/document/core/multi_module_basic_image/select-add-module.png new file mode 100644 index 0000000..23db288 Binary files /dev/null and b/document/core/multi_module_basic_image/select-add-module.png differ diff --git a/document/core/multi_module_basic_image/select-dependency.png b/document/core/multi_module_basic_image/select-dependency.png new file mode 100644 index 0000000..62afd2f Binary files /dev/null and b/document/core/multi_module_basic_image/select-dependency.png differ diff --git a/document/index.md b/document/index.md new file mode 100644 index 0000000..e69de29 diff --git a/domain/build.gradle b/domain/build.gradle new file mode 100644 index 0000000..4e85412 --- /dev/null +++ b/domain/build.gradle @@ -0,0 +1,4 @@ +jar { + enabled = true + archivesBaseName = 'domain' +} diff --git a/domain/gradle/wrapper/gradle-wrapper.jar b/domain/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..41d9927 Binary files /dev/null and b/domain/gradle/wrapper/gradle-wrapper.jar differ diff --git a/domain/gradle/wrapper/gradle-wrapper.properties b/domain/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..00e33ed --- /dev/null +++ b/domain/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/domain/gradlew b/domain/gradlew new file mode 100755 index 0000000..1b6c787 --- /dev/null +++ b/domain/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/domain/gradlew.bat b/domain/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/domain/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/domain/settings.gradle b/domain/settings.gradle new file mode 100644 index 0000000..0fa2463 --- /dev/null +++ b/domain/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'domain' diff --git a/domain/src/main/java/com/roy/domain/DomainModuleClazz.java b/domain/src/main/java/com/roy/domain/DomainModuleClazz.java new file mode 100644 index 0000000..671f8b0 --- /dev/null +++ b/domain/src/main/java/com/roy/domain/DomainModuleClazz.java @@ -0,0 +1,14 @@ +package com.roy.domain; + +public class DomainModuleClazz { + private Long domainModuleId; + public DomainModuleClazz(Long domainModuleId) { + this.domainModuleId = domainModuleId; + } + public Long getDomainModuleId() { + return domainModuleId; + } + public void setDomainModuleId(Long domainModuleId) { + this.domainModuleId = domainModuleId; + } +} diff --git a/domain/src/main/resources/application.properties b/domain/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/domain/src/main/resources/application.properties @@ -0,0 +1 @@ + diff --git a/settings.gradle b/settings.gradle index 9c2c030..1c1ca3a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,4 @@ rootProject.name = 'springcloud' +include("domain") +include("util") +include("users") diff --git a/users/build.gradle b/users/build.gradle new file mode 100644 index 0000000..703d760 --- /dev/null +++ b/users/build.gradle @@ -0,0 +1,7 @@ +dependencies { + implementation(project(":domain")) + implementation(project(":util")) + + implementation("org.springframework.boot:spring-boot-starter") + testImplementation("org.springframework.boot:spring-boot-starter-test") +} \ No newline at end of file diff --git a/users/gradle/wrapper/gradle-wrapper.jar b/users/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..41d9927 Binary files /dev/null and b/users/gradle/wrapper/gradle-wrapper.jar differ diff --git a/users/gradle/wrapper/gradle-wrapper.properties b/users/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..00e33ed --- /dev/null +++ b/users/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/users/gradlew b/users/gradlew new file mode 100755 index 0000000..1b6c787 --- /dev/null +++ b/users/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/users/gradlew.bat b/users/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/users/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/users/settings.gradle b/users/settings.gradle new file mode 100644 index 0000000..68b91da --- /dev/null +++ b/users/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'users' diff --git a/users/src/main/java/com/roy/users/UsersApplication.java b/users/src/main/java/com/roy/users/UsersApplication.java new file mode 100644 index 0000000..79510d7 --- /dev/null +++ b/users/src/main/java/com/roy/users/UsersApplication.java @@ -0,0 +1,13 @@ +package com.roy.users; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class UsersApplication { + + public static void main(String[] args) { + SpringApplication.run(UsersApplication.class, args); + } + +} diff --git a/users/src/main/resources/application.properties b/users/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/users/src/main/resources/application.properties @@ -0,0 +1 @@ + diff --git a/users/src/test/java/com/roy/users/DependencyTest.java b/users/src/test/java/com/roy/users/DependencyTest.java new file mode 100644 index 0000000..a3f5582 --- /dev/null +++ b/users/src/test/java/com/roy/users/DependencyTest.java @@ -0,0 +1,22 @@ +package com.roy.users; + +import com.roy.domain.DomainModuleClazz; +import com.roy.util.UtilModuleClazz; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class DependencyTest { + @Test + @DisplayName("멀티 모듈 정상작동 테스트") + void multiModuleTest() { + assertDoesNotThrow(() -> { + DomainModuleClazz domainModuleClazz = new DomainModuleClazz(1L); + UtilModuleClazz utilModuleClazz = new UtilModuleClazz(1L); + assertNotNull(domainModuleClazz); + assertNotNull(utilModuleClazz); + }); + } +} diff --git a/users/src/test/java/com/roy/users/UsersApplicationTests.java b/users/src/test/java/com/roy/users/UsersApplicationTests.java new file mode 100644 index 0000000..b4fd752 --- /dev/null +++ b/users/src/test/java/com/roy/users/UsersApplicationTests.java @@ -0,0 +1,13 @@ +package com.roy.users; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class UsersApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git a/util/build.gradle b/util/build.gradle new file mode 100644 index 0000000..b99a8ad --- /dev/null +++ b/util/build.gradle @@ -0,0 +1,4 @@ +jar { + enabled = true + archivesBaseName = 'util' +} diff --git a/util/gradle/wrapper/gradle-wrapper.jar b/util/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..41d9927 Binary files /dev/null and b/util/gradle/wrapper/gradle-wrapper.jar differ diff --git a/util/gradle/wrapper/gradle-wrapper.properties b/util/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..00e33ed --- /dev/null +++ b/util/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/util/gradlew b/util/gradlew new file mode 100755 index 0000000..1b6c787 --- /dev/null +++ b/util/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/util/gradlew.bat b/util/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/util/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/util/settings.gradle b/util/settings.gradle new file mode 100644 index 0000000..28b50c8 --- /dev/null +++ b/util/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'util' diff --git a/util/src/main/java/com/roy/util/UtilModuleClazz.java b/util/src/main/java/com/roy/util/UtilModuleClazz.java new file mode 100644 index 0000000..7bd6179 --- /dev/null +++ b/util/src/main/java/com/roy/util/UtilModuleClazz.java @@ -0,0 +1,14 @@ +package com.roy.util; + +public class UtilModuleClazz { + private Long utilModuleId; + public UtilModuleClazz(Long utilModuleId) { + this.utilModuleId = utilModuleId; + } + public Long getUtilModuleId() { + return utilModuleId; + } + public void setUtilModuleId(Long utilModuleId) { + this.utilModuleId = utilModuleId; + } +} diff --git a/util/src/main/resources/application.properties b/util/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/util/src/main/resources/application.properties @@ -0,0 +1 @@ +