spring3 Spring MultipartFile → File → JAXB VO 파싱 완벽 가이드 📁 Spring에서 대용량 XML 파일 처리하기MultipartFile → File 변환 + JAXB 파싱 (Namespace 문제 해결 포함)1. MultipartFile → File 변환 (스트림 방식)// 대용량 파일 처리에 최적화public File convertToFile(MultipartFile multipartFile) throws IOException { File tempFile = File.createTempFile("upload_", ".xml"); try (InputStream is = multipartFile.getInputStream(); FileOutputStream fos = new FileOutputStream(tempFile)) { .. 2025. 5. 13. [spring] Error configuring application listener of class com.sun.faces.config.ConfigureListener Error configuring application listener of class com.sun.faces.config.ConfigureListener ------------------- 아래 라이브러리 추가 --------------- javax javaee-api 6.0 com.sun.faces jsf-impl 2.1.6 2014. 9. 2. [spring] Error configuring application listener of class org.springframework.web.context.ContextLoaderListener Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 조치법: Open the project's properties (e.g., right-click on the project's name in the project explorer and select "Properties"). Select "Deployment Assembly". Click the "Add..." button on the right margin. Select "Java Build Path Entries" from the menu of Directive Type and click "Next". Select "Ma.. 2014. 9. 2. 이전 1 다음 반응형