개발자가 내팔자

[Java] Spring Framework 개발 환경 본문

WEB

[Java] Spring Framework 개발 환경

야생의 개발자 2022. 5. 22. 03:29

내가 앞으로 Spring으로 개발하기 위해 필요한 도구들

- 자바 개발 도구 : Java11

- 통합 개발 환경 : STS, Intellij

- 웹 서버 : Tomcat9

- 데이터베이스 : MySQL 5.7

- 브라우저 : 크롬

- 기타 : VS code, Git, AWS, Maven

 

for windows . . .

나는 맥이라 이 방법은 안 쓴다.

1. Open JDK

Oracle JDK와 Open JDK가 있는데, Open JDK를 쓴다. (무료)

구글 검색창에 openjdk 11 download를 친다.

 

https://jdk.java.net/archive/

 

Archived OpenJDK GA Releases

Archived OpenJDK General-Availability Releases This page is an archive of previously released builds of the JDK licensed under the GNU General Public License, version 2, with Classpath Exception. WARNING: These older versions of the JDK are provided to he

jdk.java.net

 

쭉 내려서 이것을 찾는다.

GA : General Availability

대중들에게 릴리즈 될만큼 안정된 버전이라는 뜻

 

2. IDE

비싸고 편하다
무료!

둘 중 아무거나 설치하면 되는데, 인텔리제이는 유료다.

무료 버전에서는 스프링부트만 지원하고 스프링은 지원하지 않는다고 한다.

 

3. Web server

구글에 `tomcat download` 검색

https://tomcat.apache.org/download-80.cgi

 

Apache Tomcat® - Apache Tomcat 8 Software Downloads

Welcome to the Apache Tomcat® 8.x software download page. This page provides download links for obtaining the latest versions of Tomcat 8.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions

tomcat.apache.org

 

which version? 페이지로 간다.

나는 9.0.x 버전을 설치할 예정

Java Spec

1. SE - Standard (일반)

2. EE - Enterprise (대기업)

3. ME - Micro (소형기기)

 

Tomcat은 JEE 일부만 구현했다고 한다.

 

4. MySQL 5.7

귀여운 돌고래...

이하는 모두 이미 설치되어 있으므로 생략.

'WEB' 카테고리의 다른 글

[Tomcat] 설정 파일  (0) 2022.05.24
[Java] HttpServletMethod  (0) 2022.05.23
[Java] mac에서 JDK 설치하기 (with sdkman)  (0) 2022.05.22
[Git] Mac에서 git 설치  (0) 2022.05.22
[IDE] VS code 유용한 extensions  (0) 2022.05.22
Comments