STS3 브라우저 내 서버 실행까지 전체 과정 기록
-vm
C:\jdk-11\bin\javaw.exe
사용할 워크스페이스 폴더 지정
초기 화면
삭제 전
삭제 후
org.springframework.templates.mvc-3.2.2
파일 압축해제해서 복붙 <properties>
<java-version>1.6</java-version>
<!-- 5.0.7버전으로 수정 -->
<org.springframework-version>5.0.7.RELEASE</org.springframework-version>
<org.aspectj-version>1.6.10</org.aspectj-version>
<org.slf4j-version>1.6.6</org.slf4j-version>
</properties>
<dependencies>
<!-- Spring -->
<!-- spring-context 태그 붙여넣기 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.7.RELEASE</version>
</dependency>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<!-- 아래 2개 11로 수정 -->
<source>11</source>
<target>11</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
Reference