목록Spring (82)
충분히 쌓여가는
기본 주소 요청하기
contorller 라는 package 추가 만약 파일 구조가 이렇지 않다면 설정 -> Tree Apperance 에서 설정해주면 된다 만들어 준 controller에 HomeContorller 이라는 java class를 생성한다 HomeController.java package com.buildenough.practice1.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { // 기본 페이지 요청 메서드 @GetMapping("/") public String ind..
Spring/연습
2023. 7. 5. 10:25
application.yml (어플리케이션 얌)설정
기존의 application.properties 삭제 resources에서 application.yml 이라는 file 생성 application.yml 설정 server: port: 8081
Spring/연습
2023. 7. 5. 09:59
Error code: 1175. you are using safe update mode and you tried to update a table without a where that uses a key column
MySQL에서 DELETE문이 수행되지 않고 Error Code에 you are using safe update mode and you tried to update a table without a where that uses a key column 라고 표기될 때 해결방법 Workbench Preferences -> SQL Editor -> 제일 하단의 Safe Updates 체크박스 해제 후 실행 정상적으로 DELETE문 실행됨
Spring/오류
2023. 5. 24. 15:26