전체 글(746)
-
Whitelabel Error Page
'/hello'만 서비스되고 '/'에 대한 정의는 없기 때문에 발생한 에러 @GetMapping("/hello") -> @GetMapping("/") 변경하면 해결 됨 package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.an..
2021.03.06 -
The import org.springframework.web cannot be resolved
pom.xml파일에 아래 내용 추가 필요 org.springframework.boot spring-boot-starter-web
2021.03.06 -
The import org.springframework.web cannot be resolved
1. 참조하는 jar가 없기 때문에 발생한 에러 2. 조치방법 Project에서 오른쪽 버튼 Maven > Add Dependency 아래 URL 참조하여 값 셋팅(3번의 pox.xml 값) Maven Repository: org.springframework » spring-web (mvnrepository.com) 3. pom.xml에 아래 내용 셋팅 확인 org.springframework spring-web 5.2.13.RELEASE 4. 이렇게 조치하면, run 수행시 아래 문제 발생 . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | ..
2021.03.05 -
Spring Boot JDK 1.8 셋팅
Window > Java > Installed JREs Add를 통하여 원하는 JDK의 bin 디렉토리 셋팅
2021.03.05 -
Django Admin form 데이터
original {% extends 'admin/change_form.html' %} {% load ocr_filters %} {% block after_related_objects %} {% endblock%}
2021.03.04 -
Django admin reverse
Reversing admin URLs in Django | en.proft.me Reversing admin URLs in Django | en.proft.me Short note about reversing admin URLs in Django. en.proft.me
2021.03.03