01.18 10:00 ~ 13: 00

<모각소 1회차>

intelliJ + view 환경설정

  1. 인텔리제이를 활용한 스프링 프로젝트 환경설정
>java -version
java version "19.0.2" 2023-01-17
Java(TM) SE Runtime Environment (build 19.0.2+7-44)
Java HotSpot(TM) 64-Bit Server VM (build 19.0.2+7-44, mixed mode, sharing)

>javac -version
javac 19.0.2

java 19 / intelliJ 사용

https://start.spring.io/

→ 지금은 3.2.1

spring web, thymeleaf로 프로젝트 생성 → 압축폴더로 다운로드받기 가능(스프링 프로젝트)

plugins {
	id 'groovy'
	id 'org.springframework.boot' version '3.2.1'
	id 'io.spring.dependency-management' version '1.1.4'
}

group = 'hello'
version = '0.0.1-SNAPSHOT'

java {
	sourceCompatibility = '17' // java ver.17
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
	implementation 'org.springframework.boot:spring-boot-starter-web'
	implementation 'org.apache.groovy:groovy'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

tasks.named('test') {
	useJUnitPlatform()
}