Spring관련 기술/Spring

JAR이란? 자바는 여러 클래스와 리소스를 묶어 'JAR(Java Archive)'라고 하는 압축 파일을 만들 수 있다. 이 파일은 JVM 위에서 직접 실행되거나 또는 다른 곳에서 사용하는 라이브러리로 제공된다. 직접 실행하는 경우 main() 메서드가 필요하고, 'MANIFEST.MF' 파일에 실행할 메인 메서드가 있는 클래스를 지정해두어야 한다. war 파일을 말아서 압축을 푼 결과 -> META-INF, WEB-INF, index.html이 생긴 것을 볼 수 있다. war 파일 압출 해제 명령어: jar -xvf .\server-0.0.1-SNAPSHOT.war Jar는 클래스와 관련 리소스를 압축한 단순한 파일 필요한 경우 이 파일을 직접 실행할 수도 있고, 다른 곳에서 라이브러리로 사용할 수도 ..
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.http.converter.HttpMessageConversionException: Type definition error: [simple type, class com.coblog.api.request.PostCreate]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `com.coblog.api.request.PostCreate` (no ..
솜사탕코튼
'Spring관련 기술/Spring' 카테고리의 글 목록