DevTools/IntelliJ IDEA
-
Intellij에서 버전별로는 잘 모르겠지만 함수의 내용이 1줄일 경우 밑의 사진처럼 한줄로 처리해주는 기능이 default로 되어있나보다 보기 싫으니까 빨리 수정하자 Setting > Editor > General > Code Folding > One-line methods 체크 해제
Intellij에서 함수가 한줄로 보이는 현상 수정하기Intellij에서 버전별로는 잘 모르겠지만 함수의 내용이 1줄일 경우 밑의 사진처럼 한줄로 처리해주는 기능이 default로 되어있나보다 보기 싫으니까 빨리 수정하자 Setting > Editor > General > Code Folding > One-line methods 체크 해제
2022.08.04 -
코드 변경 시 자동 재시작이 되도록 설정해봅시다 1. spring-boot-devtools 추가 2. build project automatically 체크 3. Allow auto-make to start even if developed application is currently running 체크 1. spring-boot-devtools 추가 maven, gradle 마다 조금씩 다르므로 그냥 해당 링크를 찾아가 추가하자 https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools Maven Repository: org.springframework.boot » spring-boot-devtools Spring Bo..
IntelliJ + 스프링 부트 에서 코드 변경시 자동 재시작코드 변경 시 자동 재시작이 되도록 설정해봅시다 1. spring-boot-devtools 추가 2. build project automatically 체크 3. Allow auto-make to start even if developed application is currently running 체크 1. spring-boot-devtools 추가 maven, gradle 마다 조금씩 다르므로 그냥 해당 링크를 찾아가 추가하자 https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools Maven Repository: org.springframework.boot » spring-boot-devtools Spring Bo..
2022.07.10 -
최근에 좀 나한테는 새로웠고 신기한걸 봐서 남겨본다 개발을 진행하며 요청 테스트를 할때 Postman이나 RestClient 같은걸로 요청을 보낼 수 있다 인텔리제이에서는 .http 파일을 통해서 요청을 보낼 수 있다 그럼 간단히 실습을 해보자 먼저 New > HTTP Request를 선택해 파일을 생성한다 나는 파일명을 hello.http로 했다 간단한 컨트롤러를 만들고 @RestController public class HelloController { @GetMapping("/hello") public String hello(){ return "hello"; } } hello.http 파일에 해당 내용을 적고 좌측의 실행버튼을 눌러보면 ### 요청 ㄱㄱ GET http://localhost:8080/..
Intellij의 .http 파일을 통해 요청 보내보기최근에 좀 나한테는 새로웠고 신기한걸 봐서 남겨본다 개발을 진행하며 요청 테스트를 할때 Postman이나 RestClient 같은걸로 요청을 보낼 수 있다 인텔리제이에서는 .http 파일을 통해서 요청을 보낼 수 있다 그럼 간단히 실습을 해보자 먼저 New > HTTP Request를 선택해 파일을 생성한다 나는 파일명을 hello.http로 했다 간단한 컨트롤러를 만들고 @RestController public class HelloController { @GetMapping("/hello") public String hello(){ return "hello"; } } hello.http 파일에 해당 내용을 적고 좌측의 실행버튼을 눌러보면 ### 요청 ㄱㄱ GET http://localhost:8080/..
2022.06.27 -
주석을 하면 들여쓰기된 부분이 아니라 완전 맨 앞에서 주석이 생성되길래 나는 불편했음 File > Settings > Editor > Code Style > Java Code Generation 탭 선택 Comment Code 항목에 Line comment at first column 체크 해제 (+ 주석 후 띄어쓰기를 시킬라면 Add a space at comment start 체크)
IntelliJ에서 주석 ( Ctrl + / ) 시 코드 바로 앞에 되도록 설정주석을 하면 들여쓰기된 부분이 아니라 완전 맨 앞에서 주석이 생성되길래 나는 불편했음 File > Settings > Editor > Code Style > Java Code Generation 탭 선택 Comment Code 항목에 Line comment at first column 체크 해제 (+ 주석 후 띄어쓰기를 시킬라면 Add a space at comment start 체크)
2021.10.28