From 70c7c4771ae3dac28e7140dfe0558b83220f9c40 Mon Sep 17 00:00:00 2001 From: mcutegs2 Date: Fri, 5 Jun 2020 14:00:37 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EC=BB=AC=20=EC=95=84=ED=8C=8C?= =?UTF-8?q?=EC=B9=98=20=ED=86=B0=EC=BA=A3=208.5=20=EC=84=9C=EB=B2=84=20?= =?UTF-8?q?=EC=8B=A4=ED=96=89=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.settings/org.eclipse.wst.server.core.prefs | 2 +- .../server.xml | 2 +- hospital/.classpath | 8 ++++++-- hospital/.gitignore | 1 + hospital/.project | 6 ++++++ .../.settings/org.eclipse.core.resources.prefs | 2 ++ ...rg.eclipse.wst.common.project.facet.core.xml | 3 ++- .../org.eclipse.wst.ws.service.policy.prefs | 2 ++ hospital/src/main/webapp/WEB-INF/web.xml | 16 ++++++++++++---- hospital/src/main/webapp/index.jsp | 16 ++++++++++++---- hospital/target/hospital.war | Bin 2168 -> 0 bytes hospital/target/hospital/WEB-INF/web.xml | 7 ------- hospital/target/hospital/index.jsp | 12 ------------ .../target/m2e-wtp/web-resources/.gitignore | 1 - hospital/target/maven-archiver/pom.properties | 4 ---- 15 files changed, 45 insertions(+), 37 deletions(-) create mode 100644 hospital/.gitignore create mode 100644 hospital/.settings/org.eclipse.wst.ws.service.policy.prefs delete mode 100644 hospital/target/hospital.war delete mode 100644 hospital/target/hospital/WEB-INF/web.xml delete mode 100644 hospital/target/hospital/index.jsp delete mode 100644 hospital/target/m2e-wtp/web-resources/.gitignore delete mode 100644 hospital/target/maven-archiver/pom.properties diff --git a/Servers/.settings/org.eclipse.wst.server.core.prefs b/Servers/.settings/org.eclipse.wst.server.core.prefs index 6315b8f..0a979f1 100644 --- a/Servers/.settings/org.eclipse.wst.server.core.prefs +++ b/Servers/.settings/org.eclipse.wst.server.core.prefs @@ -1,3 +1,3 @@ -#Fri Jun 05 10:15:50 KST 2020 +#Fri Jun 05 12:31:26 KST 2020 org.eclipse.wst.server.core.isServerProject=true eclipse.preferences.version=1 diff --git a/Servers/Tomcat v8.5 Server at localhost-config/server.xml b/Servers/Tomcat v8.5 Server at localhost-config/server.xml index 425bbd2..aea4a50 100644 --- a/Servers/Tomcat v8.5 Server at localhost-config/server.xml +++ b/Servers/Tomcat v8.5 Server at localhost-config/server.xml @@ -153,7 +153,7 @@ Note: The pattern used is equivalent to using pattern="common" --> - + \ No newline at end of file diff --git a/hospital/.classpath b/hospital/.classpath index 69999a8..3b7e256 100644 --- a/hospital/.classpath +++ b/hospital/.classpath @@ -19,10 +19,14 @@ - + + + + + - + diff --git a/hospital/.gitignore b/hospital/.gitignore new file mode 100644 index 0000000..b83d222 --- /dev/null +++ b/hospital/.gitignore @@ -0,0 +1 @@ +/target/ diff --git a/hospital/.project b/hospital/.project index b573a07..00939bf 100644 --- a/hospital/.project +++ b/hospital/.project @@ -15,6 +15,11 @@ + + org.eclipse.wst.validation.validationbuilder + + + org.eclipse.m2e.core.maven2Builder @@ -25,5 +30,6 @@ org.eclipse.jdt.core.javanature org.eclipse.m2e.core.maven2Nature org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature diff --git a/hospital/.settings/org.eclipse.core.resources.prefs b/hospital/.settings/org.eclipse.core.resources.prefs index 99f26c0..f9fe345 100644 --- a/hospital/.settings/org.eclipse.core.resources.prefs +++ b/hospital/.settings/org.eclipse.core.resources.prefs @@ -1,2 +1,4 @@ eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 encoding/=UTF-8 diff --git a/hospital/.settings/org.eclipse.wst.common.project.facet.core.xml b/hospital/.settings/org.eclipse.wst.common.project.facet.core.xml index 3f2dd2b..47ce2ca 100644 --- a/hospital/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/hospital/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,7 +1,8 @@ + - + diff --git a/hospital/.settings/org.eclipse.wst.ws.service.policy.prefs b/hospital/.settings/org.eclipse.wst.ws.service.policy.prefs new file mode 100644 index 0000000..9cfcabe --- /dev/null +++ b/hospital/.settings/org.eclipse.wst.ws.service.policy.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +org.eclipse.wst.ws.service.policy.projectEnabled=false diff --git a/hospital/src/main/webapp/WEB-INF/web.xml b/hospital/src/main/webapp/WEB-INF/web.xml index 9f88c1f..70070ff 100644 --- a/hospital/src/main/webapp/WEB-INF/web.xml +++ b/hospital/src/main/webapp/WEB-INF/web.xml @@ -1,7 +1,15 @@ - + + + + - Archetype Created Web Application + + + index.jsp + diff --git a/hospital/src/main/webapp/index.jsp b/hospital/src/main/webapp/index.jsp index b254c78..24d9017 100644 --- a/hospital/src/main/webapp/index.jsp +++ b/hospital/src/main/webapp/index.jsp @@ -4,9 +4,17 @@ -Insert title here +병원 관리 시스템 - -

what the hell?

- + +

병원 임직원 회원가입

+
+ +아이디 :
+암호 :
+이름 :
+e-mail :

+ +

+ \ No newline at end of file diff --git a/hospital/target/hospital.war b/hospital/target/hospital.war deleted file mode 100644 index 5ee7d1ee22e83137b22aaf44f4530ce0fdf23dfe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2168 zcmWIWW@Zs#VBp|j$O=6gux*m&+IR*AhBP1siZb}RhB)ea`nl=*I{JCKxdw;m`MQ1f zJ#*T}TUYNQueYw&xijZC2N_&3e(+BiLi>0f!1bry(<>)N`TFhJ2|Kw?ro|mtV zr!S+og_w$3`Vy@lYSWfJ)0B8U^QENomZdMMmZmiKY`kFHVQysl&<$|F31q11h2dRdHMJg~X76(o=T@FfXXd4(R_J9F7ufdO^EWy094!~x=e)P&qJWt&qpygtx@ks6xX z{604ue8h7jUuy|oR`saWkCWAJ|5JDNK-Jm}C5JA3Ym=CMV*lk=F`E~CS;PKH@($Ca zs;b2S@?xP1TF6@A@Qyd=CS;cDxJ_5kmftB$B7bRA1b>aLF$56YNs zd}iihv!9l$--j~hUv0S)wPM|G=b3^WPDf6sJXmqmV#m$OtGjilxCI>9bME0XDUY>p zw>*gBXH$|=7F(X682$b&-^Y{jb9S8!F#Mvi_eki+4mrcvA_h*y99?0i153)bJuc3u zSU;&mWbLQTp%Z$$s#X6_<*EPH^6>j>W`uu0DRnsqLv<|BA2C3z1H|xzk(*eSnx~(f zua}#ypOIf&kXe$LqhFApt5;BzUyxc@YV4?8*FgR z__Fb{r&`d2ZF<4@g7FpJZ^b+u-#+j^eCnltN?-Sb&qm*K*H8OCf9j>9b<)S%M~|^9 z<%zg>$~2W{ABq^k=@*iS6#R|`SY0vveSnF9;VLjysuJZ)U}UTfjrG56AX4l8$iCv{ z;ce|Va&M}%I9-r)a9-5Fa=T)6%yTnSi?S5!+@Ieq`h+j7%UOFYy5`-^eeuW5Pu^T5 zkimGXK-GV-qMQqdO0eYgpP64i|5LK-J9p`D^Wo+tS6&Iua6RWZ>vBe3Zl#llqqu^h zuI6m!Fe~-#=E~w9zu7cyIx2`&MS|^oD zywd5`;_ZRCKYNT`pDRxF%3JB-!T)8+g$G;s?0ep?+kgMw-yJ*sPb}(w?4kEqeb(+{ z%e_|#f2!h%^oVj0XYPI7bs>MorA-ngXS<-yhLm!-N+xaDk``AwN`-;k&CI<1pxcW%??yfUC zmOR>}KeuI1(pw4Fr&G+9O?np4uw~`+i2-joQ?oP!lg-~QGT6H4h0{l#&||)a9fr-4 zYgA`3K%yY+#god#m9to4~xQa+)&l?V9HX8BCRCy}qHCOW8*1q3-#& z_C*Do?<{6sTrSu2Kb>o%JM+H1#cX-MIlk_3XF6`Jc7f@xo?88y6>0ys?q2u%?2h;1 z0p5&EBFwmJ6<|I9gC&h13Z8S3>KKR#xT^t(egTHJjuVkhz^4sVEkFQB+YTTTRs`bH z1*#?>0Ho_4kO|X;s5B6s#a3;=^e<`TVMMA#ki!UD`HawZ3#bidDYUdk){Lz%L}*?G pEPLPqOhnO$Y%;d;3t@5~GchIuOS1rPRyL3}4j|+MIwu6o0|2pW7YhIY diff --git a/hospital/target/hospital/WEB-INF/web.xml b/hospital/target/hospital/WEB-INF/web.xml deleted file mode 100644 index 9f88c1f..0000000 --- a/hospital/target/hospital/WEB-INF/web.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - Archetype Created Web Application - diff --git a/hospital/target/hospital/index.jsp b/hospital/target/hospital/index.jsp deleted file mode 100644 index b254c78..0000000 --- a/hospital/target/hospital/index.jsp +++ /dev/null @@ -1,12 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" - pageEncoding="UTF-8"%> - - - - -Insert title here - - -

what the hell?

- - \ No newline at end of file diff --git a/hospital/target/m2e-wtp/web-resources/.gitignore b/hospital/target/m2e-wtp/web-resources/.gitignore deleted file mode 100644 index 3385916..0000000 --- a/hospital/target/m2e-wtp/web-resources/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/META-INF/ diff --git a/hospital/target/maven-archiver/pom.properties b/hospital/target/maven-archiver/pom.properties deleted file mode 100644 index 779fece..0000000 --- a/hospital/target/maven-archiver/pom.properties +++ /dev/null @@ -1,4 +0,0 @@ -#Created by Apache Maven 3.6.3 -version=0.0.1-SNAPSHOT -groupId=co.mg -artifactId=hospital