반응형
반응형
Error 인텔리제이로 그레이들 프로젝트를 불러왔는데 다음과 같은 에러가 발생하였다. A problem occurred configuring root project 'example'. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.2. Required by: project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.0.2 > No matching variant of org.springframework.boot:spring-boo..
Error 특정 뷰를 설정하고 해당 페이지로 이동하려니 다음과 같은 에러가 출력 ERROR [nio-8081-exec-5] org.thymeleaf.TemplateEngine [THYMELEAF][http-nio-8081-exec-5] Exception processing template "~~~": Error resolving template [~~~], template might not exist or might not be accessible by any of the configured Template Resolvers org.thymeleaf.exceptions.TemplateInputException: Error resolving template [~~~], template might not e..
이 글은 작성된 포스팅의 기능을 정리한 글 입니다. 예시를 통해 좀 더 자세한 설명이 필요하신 분은 아래의 목록을 참고해주세요. 2022.06.17 - [Programming/Rest API (Python)] - POSTMAN 사용법 - 간단 예시를 API 서버 테스트하기 + Beautify 2022.06.17 - [Programming/Rest API (Python)] - API서버 - RestFul API의 기본 개념, 구성 2022.06.17 - [Programming/Rest API (Python)] - API Flask - route 이해하기 2022.06.17 - [Programming/Rest API (Python)] - API서버 - DB 연동하기 2022.06.19 - [Programmi..
Error 지정한 리파지토리를 찾을 수 없다고 나옴 Description: Parameter 0 of constructor in ~~~ required a bean of type '~~~' that could not be found. Action: Consider defining a bean of type '~~~' in your configuration. 해결 방법 리파지토리가 같은 경로에 있지 않아서 찾지 못하는 경우이다. 불러오는 클래스 위에 애너테이션을 추가해 직접 경로를 잡아준다. 방법1: ComponentScan 그렇지만 해당 경로를 입력해도 내 경우엔 해결되지 않았다. @ComponentScan(basePackages = {"패키지경로"}) 방법2 : EnableJpaRepositories ..
Maven 설치 다운로드 아래의 링크로 이동하여 매이븐 다운로드 https://maven.apache.org/download.cgi Maven – Download Apache Maven Downloading Apache Maven 3.8.7 Apache Maven 3.8.7 is the latest release and recommended version for all users. System Requirements Java Development Kit (JDK) Maven 3.3+ requires JDK 1.7 or above to execute. It still allows you to build against 1.3 and othe maven.apache.org 압축 해제 매이븐을 저장 할 디렉토리..
포스팅 정보 - 해당 포스팅에서 사용한 툴, 라이브러리 IDE : STS4 Project : Gradle Project DB : H2 필요 라이브러리 추가 의존성 추가 (dependencies) build.gradle dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect' } 타임리프란? (thymeleaf) 일반적으로 많이 쓰는 템플릿 라이브러리 HTML 형식의 파일에 자바 코드를 삽입 할 수 있게 해주는 것 페이지 연결하기 (Controller) 페이지에 보여질 템플릿 설정 html 파..