From 21aed4d6e84f8a16c78f190a0059a803a5e19f52 Mon Sep 17 00:00:00 2001
From: carter-sw <6k2hbc@gmail.com>
Date: Thu, 30 May 2024 23:05:53 +0900
Subject: [PATCH] A
---
...Checkout_at_2024-05-20__7_41__Changes_.xml | 4 -
.../shelved.patch" | 860 ------------------
.idea/workspace.xml | 7 -
3 files changed, 871 deletions(-)
delete mode 100644 .idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20__7_41__Changes_.xml
delete mode 100644 ".idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20_\354\230\244\355\233\204_7_41_[Changes]/shelved.patch"
diff --git a/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20__7_41__Changes_.xml b/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20__7_41__Changes_.xml
deleted file mode 100644
index 4da8b57..0000000
--- a/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20__7_41__Changes_.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git "a/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20_\354\230\244\355\233\204_7_41_[Changes]/shelved.patch" "b/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20_\354\230\244\355\233\204_7_41_[Changes]/shelved.patch"
deleted file mode 100644
index 14cf557..0000000
--- "a/.idea/shelf/Uncommitted_changes_before_Checkout_at_2024-05-20_\354\230\244\355\233\204_7_41_[Changes]/shelved.patch"
+++ /dev/null
@@ -1,860 +0,0 @@
-Index: .idea/shelf/Uncommitted_changes_before_rebase_[Changes]1/shelved.patch
-===================================================================
-diff --git a/.idea/shelf/Uncommitted_changes_before_rebase_[Changes]1/shelved.patch b/.idea/shelf/Uncommitted_changes_before_rebase_[Changes]1/shelved.patch
-deleted file mode 100644
---- a/.idea/shelf/Uncommitted_changes_before_rebase_[Changes]1/shelved.patch (revision f9c9120b29dfc4c9fcbc40649ecf47735b856505)
-+++ /dev/null (revision f9c9120b29dfc4c9fcbc40649ecf47735b856505)
-@@ -1,459 +0,0 @@
--Index: scripts/start.sh
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>#!/bin/bash\r\n\r\nROOT_PATH=\"/home/ec2-user/spring\"\r\nJAR= \"$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar # 내 ec2 파일 위치\r\nAPP_LOG=\"$ROOT_PATH/application.log\"\r\nERROR_LOG=\"$ROOT_PATH/error.log\"\r\nSTART_LOG=\"$ROOT_PATH/start.log\"\r\n\r\nNOW=$(date +%c)\r\n\r\necho \"[$NOW] $JAR 복사\" >> $START_LOG\r\ncp $ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar $JAR\r\n\r\necho \"[$NOW] > $JAR 실행\" >> $START_LOG\r\nnohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG &\r\n\r\nSERVICE_PID=$(pgrep -f $JAR)\r\necho \"[$NOW] > 서비스 PID: $SERVICE_PID\" >> $START_LOG
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/scripts/start.sh b/scripts/start.sh
----- a/scripts/start.sh (revision c890fe5580ae0f51e3d8bd01f509600fa6213ec6)
--+++ b/scripts/start.sh (date 1715514241960)
--@@ -1,7 +1,7 @@
-- #!/bin/bash
--
-- ROOT_PATH="/home/ec2-user/spring"
---JAR= "$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar # 내 ec2 파일 위치
--+JAR="$ROOT_PATH/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 수정된 경로
-- APP_LOG="$ROOT_PATH/application.log"
-- ERROR_LOG="$ROOT_PATH/error.log"
-- START_LOG="$ROOT_PATH/start.log"
--@@ -9,10 +9,10 @@
-- NOW=$(date +%c)
--
-- echo "[$NOW] $JAR 복사" >> $START_LOG
---cp $ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar $JAR
--+cp $JAR $ROOT_PATH
--
-- echo "[$NOW] > $JAR 실행" >> $START_LOG
-- nohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG &
--
-- SERVICE_PID=$(pgrep -f $JAR)
---echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG
--\ No newline at end of file
--+echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG
--Index: scripts/stop.sh
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>#!/bin/bash\r\n\r\nROOT_PATH=\"/home/ec2-user/spring\"\r\nJAR=\"$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar\" # 내 ec2 파일 위치\r\nSTOP_LOG=\"$ROOT_PATH/stop.log\"\r\nSERVICE_PID=$(pgrep -f $JAR) # 실행중인 Spring 서버의 PID\r\n\r\nif [ -z \"$SERVICE_PID\" ]; then\r\n echo \"서비스 NotFound\" >> $STOP_LOG\r\nelse\r\n echo \"서비스 종료 \" >> $STOP_LOG\r\n kill \"$SERVICE_PID\"\r\n # kill -9 $SERVICE_PID # 강제 종료를 하고 싶다면 이 명령어 사용\r\nfi
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/scripts/stop.sh b/scripts/stop.sh
----- a/scripts/stop.sh (revision c890fe5580ae0f51e3d8bd01f509600fa6213ec6)
--+++ b/scripts/stop.sh (date 1715514249419)
--@@ -1,7 +1,7 @@
-- #!/bin/bash
--
-- ROOT_PATH="/home/ec2-user/spring"
---JAR="$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 내 ec2 파일 위치
--+JAR="$ROOT_PATH/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 수정된 경로
-- STOP_LOG="$ROOT_PATH/stop.log"
-- SERVICE_PID=$(pgrep -f $JAR) # 실행중인 Spring 서버의 PID
--
--@@ -11,4 +11,4 @@
-- echo "서비스 종료 " >> $STOP_LOG
-- kill "$SERVICE_PID"
-- # kill -9 $SERVICE_PID # 강제 종료를 하고 싶다면 이 명령어 사용
---fi
--\ No newline at end of file
--+fi
--Index: .idea/compiler.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/compiler.xml b/.idea/compiler.xml
----- a/.idea/compiler.xml (revision c890fe5580ae0f51e3d8bd01f509600fa6213ec6)
--+++ b/.idea/compiler.xml (date 1715512291642)
--@@ -8,8 +8,12 @@
--
--
--
---
--+
--
--
--+
--+
--+
--+
--
--
--\ No newline at end of file
--Index: .idea/workspace.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n {\r\n "customColor": "",\r\n "associatedIndex": 8\r\n}\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n 1713439286977\r\n \r\n \r\n 1713439286977\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/workspace.xml b/.idea/workspace.xml
----- a/.idea/workspace.xml (revision c890fe5580ae0f51e3d8bd01f509600fa6213ec6)
--+++ b/.idea/workspace.xml (date 1715513461707)
--@@ -4,16 +4,11 @@
--
--
--
---
---
--+
--
--
--
--
---
---
---
---
--
--
--
--@@ -22,58 +17,22 @@
--
--
--
---
---
---
--
--
--
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--
---
--+
--
--
---
---
---
--
---
--
--
--
--
-- {
--- "customColor": "",
--- "associatedIndex": 8
--+ "associatedIndex": 2
-- }
---
--+
--
--
--
--@@ -87,127 +46,22 @@
-- "RunOnceActivity.OpenProjectViewOnStart": "true",
-- "RunOnceActivity.ShowReadmeOnStart": "true",
-- "WebServerToolWindowFactoryState": "false",
--- "git-widget-placeholder": "67ca30f8",
--- "last_opened_file_path": "C:/intell-J study/b3-3rd-project/be-3rd-project/be-3rd-project/src/main/resources",
--+ "git-widget-placeholder": "new-recovery-branch",
-- "node.js.detected.package.eslint": "true",
--- "node.js.detected.package.tslint": "true",
-- "node.js.selected.package.eslint": "(autodetect)",
-- "node.js.selected.package.tslint": "(autodetect)",
-- "nodejs_package_manager_path": "npm",
--- "project.structure.last.edited": "Modules",
--- "project.structure.proportion": "0.0",
--- "project.structure.side.proportion": "0.0",
--- "settings.editor.selected.configurable": "reference.settingsdialog.project.gradle",
--- "spring.configuration.checksum": "da75eda7ce77667934b6275aaee39ccc",
-- "vue.rearranger.settings.migration": "true"
--- },
--- "keyToStringList": {
--- "DatabaseDriversLRU": [
--- "mysql"
--- ]
-- }
-- }]]>
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
--+
--+
--+
--+
--+
--
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
---
---
---
---
---
--+
--+
--
--
--
--@@ -219,7 +73,7 @@
--
--
--
---
--+
--
--
--
--@@ -231,111 +85,25 @@
--
--
--
---
---
---
---
---
---
---
---
--
--
--
---
---
---
---
--
--
--
--
--
--
---
--- 1713439286977
--+
--+ 1715511879748
--
--
--- 1713439286977
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- 1713960226098
---
---
---
--- 1713960226098
---
---
---
--- 1714977167874
---
---
---
--- 1714977167874
---
---
---
--- 1715355772561
---
---
---
--- 1715355772561
---
---
---
--- 1715423141853
---
---
---
--- 1715423141853
--+ 1715511879748
--+
--
---
--
--
--
--
--
---
---
---
---
---
---
---
---
---
---
---
--
--\ No newline at end of file
--Index: .idea/modules.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/modules.xml b/.idea/modules.xml
----- a/.idea/modules.xml (revision c890fe5580ae0f51e3d8bd01f509600fa6213ec6)
--+++ b/.idea/modules.xml (date 1715512291642)
--@@ -2,9 +2,11 @@
--
--
--
--+
--
--
--
--+
--
--
--
--\ No newline at end of file
-Index: .idea/shelf/Uncommitted_changes_before_Update_at_2024-05-12_오후_9_00_[Changes]/shelved.patch
-===================================================================
-diff --git a/.idea/shelf/Uncommitted_changes_before_Update_at_2024-05-12_오후_9_00_[Changes]/shelved.patch b/.idea/shelf/Uncommitted_changes_before_Update_at_2024-05-12_오후_9_00_[Changes]/shelved.patch
-deleted file mode 100644
---- a/.idea/shelf/Uncommitted_changes_before_Update_at_2024-05-12_오후_9_00_[Changes]/shelved.patch (revision f9c9120b29dfc4c9fcbc40649ecf47735b856505)
-+++ /dev/null (revision f9c9120b29dfc4c9fcbc40649ecf47735b856505)
-@@ -1,359 +0,0 @@
--Index: .idea/compiler.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/compiler.xml b/.idea/compiler.xml
----- a/.idea/compiler.xml (revision dd118cfd0b7da6014ed1430ec1eb98ddfe8ed290)
--+++ b/.idea/compiler.xml (date 1715514649406)
--@@ -8,9 +8,12 @@
--
--
--
---
--+
--
--
---
--+
--+
--+
--+
--
--
--\ No newline at end of file
--Index: .idea/workspace.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n {\r\n "customColor": "",\r\n "associatedIndex": 8\r\n}\r\n \r\n \r\n \r\n \r\n \r\n {\r\n "keyToString": {\r\n "RequestMappingsPanelOrder0": "0",\r\n "RequestMappingsPanelOrder1": "1",\r\n "RequestMappingsPanelWidth0": "75",\r\n "RequestMappingsPanelWidth1": "75",\r\n "RunOnceActivity.OpenProjectViewOnStart": "true",\r\n "RunOnceActivity.ShowReadmeOnStart": "true",\r\n "WebServerToolWindowFactoryState": "false",\r\n "git-widget-placeholder": "main",\r\n "last_opened_file_path": "C:/intell-J study/b3-3rd-project/be-3rd-project/be-3rd-project/src/main/resources",\r\n "node.js.detected.package.eslint": "true",\r\n "node.js.detected.package.tslint": "true",\r\n "node.js.selected.package.eslint": "(autodetect)",\r\n "node.js.selected.package.tslint": "(autodetect)",\r\n "nodejs_package_manager_path": "npm",\r\n "project.structure.last.edited": "Modules",\r\n "project.structure.proportion": "0.0",\r\n "project.structure.side.proportion": "0.0",\r\n "settings.editor.selected.configurable": "reference.settingsdialog.project.gradle",\r\n "spring.configuration.checksum": "da75eda7ce77667934b6275aaee39ccc",\r\n "vue.rearranger.settings.migration": "true"\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n 1713439286977\r\n \r\n \r\n 1713439286977\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/workspace.xml b/.idea/workspace.xml
----- a/.idea/workspace.xml (revision dd118cfd0b7da6014ed1430ec1eb98ddfe8ed290)
--+++ b/.idea/workspace.xml (date 1715514993828)
--@@ -4,22 +4,10 @@
--
--
--
---
---
---
--+
--
--
--
---
---
---
---
---
---
---
---
---
---
--
--
--
--@@ -64,7 +52,7 @@
--
--
--
---
--+
--
--
--
--@@ -79,65 +67,19 @@
--
--
-- {
--- "customColor": "",
--- "associatedIndex": 8
--+ "associatedIndex": 2
-- }
---
--+
--
--
--
--
--- {
--- "keyToString": {
--- "RequestMappingsPanelOrder0": "0",
--- "RequestMappingsPanelOrder1": "1",
--- "RequestMappingsPanelWidth0": "75",
--- "RequestMappingsPanelWidth1": "75",
--- "RunOnceActivity.OpenProjectViewOnStart": "true",
--- "RunOnceActivity.ShowReadmeOnStart": "true",
--- "WebServerToolWindowFactoryState": "false",
--- "git-widget-placeholder": "main",
--- "last_opened_file_path": "C:/intell-J study/b3-3rd-project/be-3rd-project/be-3rd-project/src/main/resources",
--- "node.js.detected.package.eslint": "true",
--- "node.js.detected.package.tslint": "true",
--- "node.js.selected.package.eslint": "(autodetect)",
--- "node.js.selected.package.tslint": "(autodetect)",
--- "nodejs_package_manager_path": "npm",
--- "project.structure.last.edited": "Modules",
--- "project.structure.proportion": "0.0",
--- "project.structure.side.proportion": "0.0",
--- "settings.editor.selected.configurable": "reference.settingsdialog.project.gradle",
--- "spring.configuration.checksum": "da75eda7ce77667934b6275aaee39ccc",
--- "vue.rearranger.settings.migration": "true"
--
--+}]]>
--
--
--
--@@ -191,67 +133,8 @@
-- false
--
--
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--- true
--- true
--- false
--- false
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
---
--+
--+
--
--
--
--@@ -263,7 +146,7 @@
--
--
--
---
--+
--
--
--
--@@ -276,31 +159,25 @@
--
--
--
---
--
--
---
---
--
--
--
--
--
---
---
---
---
--
--
--
--
--
--
---
--- 1713439286977
--+
--+ 1715511879748
--
--
-- 1713439286977
--+
--
--
--
--@@ -372,21 +249,9 @@
--
-- 1715423141853
--
---
--
--
--
--
--
---
---
---
---
---
---
---
---
---
---
---
--
--\ No newline at end of file
--Index: scripts/start.sh
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>#!/bin/bash\r\n\r\nROOT_PATH=\"/home/ec2-user/spring\"\r\nJAR= \"$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar # 내 ec2 파일 위치\r\nAPP_LOG=\"$ROOT_PATH/application.log\"\r\nERROR_LOG=\"$ROOT_PATH/error.log\"\r\nSTART_LOG=\"$ROOT_PATH/start.log\"\r\n\r\nNOW=$(date +%c)\r\n\r\necho \"[$NOW] $JAR 복사\" >> $START_LOG\r\ncp $ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar $JAR\r\n\r\necho \"[$NOW] > $JAR 실행\" >> $START_LOG\r\nnohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG &\r\n\r\nSERVICE_PID=$(pgrep -f $JAR)\r\necho \"[$NOW] > 서비스 PID: $SERVICE_PID\" >> $START_LOG
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/scripts/start.sh b/scripts/start.sh
----- a/scripts/start.sh (revision dd118cfd0b7da6014ed1430ec1eb98ddfe8ed290)
--+++ b/scripts/start.sh (date 1715514642263)
--@@ -1,7 +1,7 @@
-- #!/bin/bash
--
-- ROOT_PATH="/home/ec2-user/spring"
---JAR= "$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar # 내 ec2 파일 위치
--+JAR="$ROOT_PATH/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 수정된 경로
-- APP_LOG="$ROOT_PATH/application.log"
-- ERROR_LOG="$ROOT_PATH/error.log"
-- START_LOG="$ROOT_PATH/start.log"
--@@ -9,10 +9,10 @@
-- NOW=$(date +%c)
--
-- echo "[$NOW] $JAR 복사" >> $START_LOG
---cp $ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar $JAR
--+cp $JAR $ROOT_PATH
--
-- echo "[$NOW] > $JAR 실행" >> $START_LOG
-- nohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG &
--
-- SERVICE_PID=$(pgrep -f $JAR)
---echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG
--\ No newline at end of file
--+echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG
--Index: scripts/stop.sh
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>#!/bin/bash\r\n\r\nROOT_PATH=\"/home/ec2-user/spring\"\r\nJAR=\"$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar\" # 내 ec2 파일 위치\r\nSTOP_LOG=\"$ROOT_PATH/stop.log\"\r\nSERVICE_PID=$(pgrep -f $JAR) # 실행중인 Spring 서버의 PID\r\n\r\nif [ -z \"$SERVICE_PID\" ]; then\r\n echo \"서비스 NotFound\" >> $STOP_LOG\r\nelse\r\n echo \"서비스 종료 \" >> $STOP_LOG\r\n kill \"$SERVICE_PID\"\r\n # kill -9 $SERVICE_PID # 강제 종료를 하고 싶다면 이 명령어 사용\r\nfi
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/scripts/stop.sh b/scripts/stop.sh
----- a/scripts/stop.sh (revision dd118cfd0b7da6014ed1430ec1eb98ddfe8ed290)
--+++ b/scripts/stop.sh (date 1715514642275)
--@@ -1,7 +1,7 @@
-- #!/bin/bash
--
-- ROOT_PATH="/home/ec2-user/spring"
---JAR="$ROOT_PATH/home/ec2-user/spring/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 내 ec2 파일 위치
--+JAR="$ROOT_PATH/build/libs/be-3rd-project-0.0.1-SNAPSHOT.jar" # 수정된 경로
-- STOP_LOG="$ROOT_PATH/stop.log"
-- SERVICE_PID=$(pgrep -f $JAR) # 실행중인 Spring 서버의 PID
--
--@@ -11,4 +11,4 @@
-- echo "서비스 종료 " >> $STOP_LOG
-- kill "$SERVICE_PID"
-- # kill -9 $SERVICE_PID # 강제 종료를 하고 싶다면 이 명령어 사용
---fi
--\ No newline at end of file
--+fi
--Index: .idea/modules.xml
--IDEA additional info:
--Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
--<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
--Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
--<+>UTF-8
--===================================================================
--diff --git a/.idea/modules.xml b/.idea/modules.xml
----- a/.idea/modules.xml (revision dd118cfd0b7da6014ed1430ec1eb98ddfe8ed290)
--+++ b/.idea/modules.xml (date 1715514691041)
--@@ -2,9 +2,11 @@
--
--
--
--+
--
--
--
--+
--
--
--
--\ No newline at end of file
-Index: .idea/workspace.xml
-IDEA additional info:
-Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
-<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n {\r\n "associatedIndex": 2\r\n}\r\n \r\n \r\n \r\n \r\n \r\n {\r\n "keyToString": {\r\n "RequestMappingsPanelOrder0": "0",\r\n "RequestMappingsPanelOrder1": "1",\r\n "RequestMappingsPanelWidth0": "75",\r\n "RequestMappingsPanelWidth1": "75",\r\n "WebServerToolWindowFactoryState": "false",\r\n "git-widget-placeholder": "main",\r\n "node.js.detected.package.eslint": "true",\r\n "node.js.selected.package.eslint": "(autodetect)",\r\n "node.js.selected.package.tslint": "(autodetect)",\r\n "nodejs_package_manager_path": "npm",\r\n "spring.configuration.checksum": "f82cefbf15414454aae55b301a71004a",\r\n "vue.rearranger.settings.migration": "true"\r\n }\r\n}\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n true\r\n true\r\n false\r\n false\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n 1715511879748\r\n \r\n \r\n 1713439286977\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1713960226098\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1714977167874\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715355772561\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n 1715423141853\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
-Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
-<+>UTF-8
-===================================================================
-diff --git a/.idea/workspace.xml b/.idea/workspace.xml
---- a/.idea/workspace.xml (revision f9c9120b29dfc4c9fcbc40649ecf47735b856505)
-+++ b/.idea/workspace.xml (date 1716122844449)
-@@ -5,6 +5,8 @@
-
-
-
-+
-+
-
-
-
-@@ -230,6 +232,8 @@
-
-
-
-+
-+
-
-
-
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index dc7a274..3e4eb09 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,14 +5,7 @@
-
-
-
-
-
-
-