인텔리제이 13

field 'xxx' may be 'final'

인텔리제이를 처음 접하여 배우면서 여러가지 에러가 많이 뜬다 생각이 들었지만, 알고보니 그냥 경고였다. field 'xxx' may be 'final' 해당 문구도 final로 바꾸는게 어떻냐는 문구였다. 신경쓰여서 이런 경고를 끄는 곳을 찾았다. Settings -> Editor -> Inspections -> Java -> Code style issues -> Field may be 'final' 체크 해제 여기서 눈에 거슬리는 여러 경고를 끌 수 있을 것 같다.

[Spring Boot/스프링부트] mustache로 변수 사용해보기

1. 컨트롤러 폴더 생성 2. 컨트롤러 파일 생성 package com.example.firstproject.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class FirstController { @GetMapping("/hi") public String hello(Model model){ model.addAttribute("username", "홍길동"); return "greetings"; // templates/greetings.m..

인텔리제이,JDK 설치

1. JDK 맞는 OS에 필요한 버전 설치 하기 https://www.oracle.com/kr/java/technologies/downloads/ Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com 윈도우의 경우 Installer로 설치하여 별다른 설정없이 설치 완료하면 된다. 2. 인텔리제이 설치 https://www.jetbrains.com/ko-kr/idea/ IntelliJ IDEA – Java 및 Kotlin을 위한 최고의 IDE www.jetbrains...

환경 세팅 2023.12.15