728x90 반응형 IT/Spring43 [Spring] - 자바(Java) 클래스로 스프링 기본 설정(Java Config) 하는 방법 #자바(Java) 클래스로 스프링 기본 설정(Java Config) 하는 방법 -자바버전: JDK1.8 -톰캣버전: tomcat9 #pom.xml 파일에 스프링 관련 라이브러리를 추가해줍니다. org.springframework spring-webmvc 5.2.5.RELEASE javax.servlet javax.servlet-api 4.0.1 provided #WebAppInitConfig.java // 톰캣 실행시 기본 설정을 위해 호출 public class WebAppInitConfig implements WebApplicationInitializer{ @Override public void onStartup(ServletContext servletContext) throws ServletExce.. 2022. 2. 18. [Spring] - 스프링 이클립스(STS)에서 프로젝트 Maven > Update Project시 설정 초기화 되는 현상 해결 방법 #스프링 이클립스(STS)에서 프로젝트 Maven > Update Project시 설정 초기화 되는 현상 해결 방법 #pom.xml 파일에 maven-compiler-plugin 플러그인을 추가해줍니다. org.apache.maven.plugins maven-compiler-plugin 3.8.1 1.8 1.8 UTF-8 2022. 2. 18. [Spring] - 스프링 이클립스(STS) pom.xml 파일 Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러 해결 방법 #스프링 이클립스(STS) pom.xml 파일 Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러 해결 방법 #스프링 이클립스(STS) pom.xml Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 에러 해결 방법 -pom.xml 파일에 maven-war-plugin를 추가해줍니다. maven-war-plugin 3.2.2 2022. 2. 18. [Spring] - 스프링 이클립스(STS) web.xml 파일 There are '37' errors in 'jsp_2_1.xsd' 에러 해결 방법 #스프링 이클립스(STS) web.xml 파일 There are '37' errors in 'jsp_2_1.xsd' 에러 해결 방법 #xml파일에서 http://java.sun.com/xml/ns/javaee 뒤에 세미클론(;)을 추가해줍니다. example index.html index.htm index.jsp default.html default.htm default.jsp 2022. 2. 18. [Spring] - 스프링 부트 자바(Java) Apache POI 라이브러리로 엑셀 파일 업로드, 다운로드 하는 방법 #스프링 부트 자바(Java) Apache POI 라이브러리로 엑셀 파일 업로드, 다운로드 하는 방법 #Apache POI 라이브러리 -자바로 엑셀파일 업로드, 다운로드시 사용합니다. #JDK 버전 호환 POI 4.0 and later require JDK version 1.8 or later. POI 3.11 and later 3.x versions require JDK version 1.6 or later. POI 3.5 to 3.10 required the JDK version 1.5 or later. Versions prior to 3.5 required JDK 1.4+. #Maven -HSSF 클래스(HSSFWorkbook): EXCEL버전 2003이하, 확장자 .xls org.apache.po.. 2022. 2. 12. [Spring] - 스프링 롬북(lombok) @EqualsAndHashCode, @JsonProperty 문법 및 사용법 #스프링 롬북(lombok) @EqualsAndHashCode, @JsonProperty 문법 및 사용법 @EqualsAndHashCode(callSuper = true) -callSuper 속성을 통해 eqauls와 hashCode 메소드 자동 생성해줍니다. -default: false -true일시 부모 클래스의 필드까지 체크해줍니다. @JsonProperty -camelCase -> snake_case -카멜케이스에서 스네이크 케이스로 변환해줍니다. @EqualsAndHashCode(callSuper = false) @JsonProperty("user_id") private String userId; 2022. 2. 7. 이전 1 2 3 4 5 6 7 8 다음 728x90 반응형