목록Spring/오류 (12)
충분히 쌓여가는
Spring Boot 프로젝트 생성 후 Application 실행 시 발생한 오류 Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. 인텔리제이 설정에서 해당 오류를 해결할 수 있다 Settings에서 Gradle 검색 Build and run using와 Run test using를 IntelliJ IDEA로 변경하면 해결된다
라이브러리를 다운받지 않아서 생기는 문제 pom.xml 마우스 우클릭 -> Add as Maven Project pom.xml 마우스 우클릭 -> Maven -> Reload project pom.xml 파일에 들어가면 dependencies가 생긴 것을 알 수 있다
회원가입 페이지 요청 중 발생한 에러 save.html member/save 주소로 보낸다고 요청을 하였는데 이메일: 비밀번호: 이름: MemberController Controller에서 주소를 받아주는 메서드가 없다 현재는 회원가입 페이지만 보여주는 메서드만 존재한다 즉, save.html에서 작성한 값을 받아주는 메서드가 아직 없다 package com.buildenough.practice1.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class MemberController { @GetMappi..
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문 실행됨