Fri May 31 18:48:32 KST 2024 There was an unexpected error (type=Internal Server Error, status=500).이라는 오류가 발생.detail.html 에서는 board.fileAttached ==1 을 이용한 파일작성의 테이블을 작성해주었는데,org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 'fileAttached' cannot be found on object of type Thymeleaf 템플릿에서 해당 DTO에서 필드를 찾을 수가 없다는 오류가 발생. 따라서 fileAttached 필드를 추가하여 동작을 시켜보니 정상적으..

2024-05-29T19:19:39.525+09:00 ERROR 25080 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed.org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'boardController' defined in file라는 오류가 발생했는데, 해당 오류는 jpa에서 이미 save 메서드를 제공하고 있음에도 불구하고, 내가 따로 정의를 해버려서 중복발생 오류로써 save 메서드를 없애주면서 오류를 해결을 할 수 있었습니다.

ERROR 12256 --- [ main] o.s.boot.SpringApplication : Application run failedFactory method 'dataSource' threw exception with message: Cannot load driver class: com.mysql.cj.jdbc.DriverSpring Boot Application에서 MySQL JDBC드라이버를 찾을 수 없다는 오류가 발생했습니다.드라이버 종속성을 추가하기 위해서 build.gradle 파일에 아래 코드 작성.implementation 'mysql:mysql-connector-java:8.0.32'추가로 DB에 대한 정보 작성코드를 추가해주면서 오류를 해결할 수 있었습니다.

ERROR 11584 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed라는 오류로 Application의 실행을 실패하였다고 오류가 떴다.이유로는 database-platform 설정을 최신 Hibernate 버전에서 지원하는 MySQL버전으로 다시 수정을 하지 않았기 때문이다. 아래 코드에서 # spring data jpa 설정jpa: database-platform: org.hibernate.dialect.MySQL5InnoDBDialect open-in-view: false show-sql: true hibernate: ddl-auto: update이 코드로 다시 변경을 해주면서 제대로 정상 작동하는 것을 ..

스프링 부트 작업을 하다가 콘솔창에 Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.라는 오류 코드를 만났다. 해결방법으로 Run - Edit Configurations...Modify options 클릭.Enable debug output 체크

pom.xml 유효성 검사를 위해서 pom.xml에 javax를 등록하는 순간 빨간줄로 에러표시가 났다. 이후에도 java code에도 import가 되지 않는 문제가 발생해서 maven repository 사이트에서 1번 코드를 복사해서 붙여놨는데도 에러 코드가 발생했고, Project의 properties > Java Build Path > Libraries 에서 Classpath 쪽에서 Maven Dependecies에 이미 다른 validation-api가 1.1.0 버전으로 들어가 있어서 새로 코드를 등록하는 과정에서 충돌이 일어났다는 것을 알 수 있었다. 따라서 ClassPath란에 위 사진에 2번(jar)를 다운받아서 ClassPath란에 따로 삽입을 해줘서 해결을 했다.

Example05Controller.java 예제 하던 중에 GetMapping이 import되지 않는 문제. package com.springmvc.chap05; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/home") public class Example05Controller { @GetMapping("/exam05") pu..