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 More기본 @SpringBootApplication = @EnableAutoConfiguration + @ComponentScan + @Configuration :Main Application @RequestParam : parameter가져오기 Lombok @Data = @toString + @getter + @setter + @RequiredArgsConstructor + @EqualsAndHashCode @NoArgsConstructor : 기본 생성자 생성 …
Java Spring Annotations 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 Morespring.profiles.include: 다른 properties 파일을 포함시킴 #JPA spring.jpa.show_sql=true : 디버그 콘솔에서 실행된 sql 보기 spring.jpa.hibernate.ddl-auto=none : 소스의 내용을 DB에 자동으로 적용 spring.jpa.properties.hibernate.format_sql=true : sql문을 보기 좋게 출력 spring.jpa.properties.hibernate.dialect : SQL문을 어느 …
application.properties 정리 Read MoreJava 요약 정리 SpringBoot에 JSP 연동시 에러 MyBatis 오류: Invalid bound statement (not found) application.properties 정리 Spring Boot build.gradle 정리 Java Spring Annotations
Java 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 MoreJDK설치 Windows JDK Download JDK 설치 Path추가 선택1 ….JDK 설치경로의 bin폴더를 윈도우 Path에 추가 Path추가 선택2 ….시스템 변수 등록 : JAVA_HOME : JDK 설치 경로 ….PATH 추가 : %JAVA_HOME%\bin Ubuntu …
Java 요약 정리 Read More