Sprinng–> SpringBoot로 전환
예전에 스프링 공부하면서 만들었던 게시판을 스프링부트로 전환했다. 스프링 외에도 여러가지를 변경했다. Spring –> SpringBootMyBatis –> JPAJSP –> MustacheEclipse –> IntelliJMySQL –> MariaDBOAuth 2.0 도입Docker 도입 한꺼번에 너무 많은 변경이 이루어져 …
Sprinng–> SpringBoot로 전환 Read More예전에 스프링 공부하면서 만들었던 게시판을 스프링부트로 전환했다. 스프링 외에도 여러가지를 변경했다. Spring –> SpringBootMyBatis –> JPAJSP –> MustacheEclipse –> IntelliJMySQL –> MariaDBOAuth 2.0 도입Docker 도입 한꺼번에 너무 많은 변경이 이루어져 …
Sprinng–> SpringBoot로 전환 Read Morespring initializer에서 생성하는 기본값 plugins { id ‘java’ id ‘org.springframework.boot’ version ‘3.3.7-SNAPSHOT’ id ‘io.spring.dependency-management’ version ‘1.1.6’ } group = ‘com.example’ version = ‘0.0.1-SNAPSHOT’ java { toolchain { languageVersion = JavaLanguageVersion.of(17) …
Spring Boot build.gradle 정리 Read More오류 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) 해결책 *mapper xml에 오타나 공백이 들어가지 않았는지 확인한다. *namespace가 맞는지 확인한다. *application.properties에 mybatis.mapper-locations이 정의되지 않았거나 경로가 잘못 지정되어 있지 않은지 확인한다. mybatis.mapper-locations:classpath:mapper/**/*.xml mapper/**/*.xml이라고 …
MyBatis 오류: Invalid bound statement (not found) Read More에러 org.apache.jasper.JasperException: The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application 해결방법 build.gradle 수정 //구문 제거 implementation ‘javax.servlet.jsp.jstl:jstl’ //구문 추가 implementation …
SpringBoot에 JSP 연동시 에러 Read More