전체 포스팅 보기
-
🔥 Problem 👉 SEO의 강화를 위해 404 에러가 발생하였을 경우, 404 페이지로 이동시킬 필요가 있습니다. 🧙 Solution 👉 ErrorPageController를 하나 제작합시다. 아래의 소스코드를 참고하여 작업하시면 됩니다. package com.ointex.noticeboard.controller; import org.springframework.boot.web.servlet.error.ErrorController; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping;..
[Spring boot] 에러 혹은 404 페이지로 이동시키는 방법🔥 Problem 👉 SEO의 강화를 위해 404 에러가 발생하였을 경우, 404 페이지로 이동시킬 필요가 있습니다. 🧙 Solution 👉 ErrorPageController를 하나 제작합시다. 아래의 소스코드를 참고하여 작업하시면 됩니다. package com.ointex.noticeboard.controller; import org.springframework.boot.web.servlet.error.ErrorController; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping;..
2024.01.16 -
🔥 Problem 👉 nested exception is java.lang.IllegalStateException: Can't configure antMatchers after anyRequest 🧙 Solution 👉 .anyRequest().authenticated() to be used only once! Please check if you used them once. http .httpBasic() .and() .authorizeRequests() .antMatchers("/test/**").permitAll() .and() .authorizeRequests() .antMatchers("/admin/**").hasAnyRole("ADMIN") .anyRequest().authenticated() ..
[Solved] Can't configure antMatchers after anyRequest🔥 Problem 👉 nested exception is java.lang.IllegalStateException: Can't configure antMatchers after anyRequest 🧙 Solution 👉 .anyRequest().authenticated() to be used only once! Please check if you used them once. http .httpBasic() .and() .authorizeRequests() .antMatchers("/test/**").permitAll() .and() .authorizeRequests() .antMatchers("/admin/**").hasAnyRole("ADMIN") .anyRequest().authenticated() ..
2024.01.12 -
🔥 Problem 👉 javax.xml.bind.JAXBException org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springSecurityFilterChain' defined in class path resource [org/springframework/security/config/annotation/web/configuration/WebSecurityConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationExc..
[Solved] Implementation of JAXB-API has not been found on module path or classpath🔥 Problem 👉 javax.xml.bind.JAXBException org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springSecurityFilterChain' defined in class path resource [org/springframework/security/config/annotation/web/configuration/WebSecurityConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationExc..
2024.01.12 -
🔥 Problem 👉 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource ....blah blah SingleTableEntityPersister org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaCon..
[Solved] Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister🔥 Problem 👉 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource ....blah blah SingleTableEntityPersister org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaCon..
2024.01.12 -
🔥 Problem 👉 Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException 🔎 info) JAXB is a Java API that displays Java classes in XML. ☔ Cause of error 👉 You cannot use the JAXB API in Java 9 and later versions, as it has been removed (deprecated). 🧙 Solution 👉 Please write the code below in pom.xml javax.xml.bind jaxb-api 2.3.0 👉 If you are ..
[Solved] java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException🔥 Problem 👉 Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException 🔎 info) JAXB is a Java API that displays Java classes in XML. ☔ Cause of error 👉 You cannot use the JAXB API in Java 9 and later versions, as it has been removed (deprecated). 🧙 Solution 👉 Please write the code below in pom.xml javax.xml.bind jaxb-api 2.3.0 👉 If you are ..
2024.01.12 -
👨💻 Elastic Stack이란? 안녕하세요. 팀드모네입니다. 해결하는 방법을 공유드립니다. 🎯 Elastic Stack을 가지고 다른 사람들은 무엇을 하고 있나요? - 빅데이터 분석 - 이상 행위가 발생한 경우 관리자에게 ALERT - 검색 엔진으로 사용 - 로깅 시스템 구축에 사용 🎯 로깅 시스템 구축 사례 (쿠키런을 만든 Devsisters) - 게임에서 생성된 각종 로그를 하나의 통합 로깅 플랫폼으로 수집 - 수집된 데이터 분석 - 서버 운영 및 트러블슈팅, 고객 문의 대응 등 다양한 용도로 사용 🎯 보안 모니터링 활용 사례 (HSHC) - 보안 데이터 수집 및 분석 - 다크웹에서 금융정보나 여권정보 거래가 일어났는지 모니터링 🎯 상품검색 및 자동완성 (이베이코리아) - 검색 뿐 아니라 상품검..
Elastic Stack 구축 성공 사례 분석👨💻 Elastic Stack이란? 안녕하세요. 팀드모네입니다. 해결하는 방법을 공유드립니다. 🎯 Elastic Stack을 가지고 다른 사람들은 무엇을 하고 있나요? - 빅데이터 분석 - 이상 행위가 발생한 경우 관리자에게 ALERT - 검색 엔진으로 사용 - 로깅 시스템 구축에 사용 🎯 로깅 시스템 구축 사례 (쿠키런을 만든 Devsisters) - 게임에서 생성된 각종 로그를 하나의 통합 로깅 플랫폼으로 수집 - 수집된 데이터 분석 - 서버 운영 및 트러블슈팅, 고객 문의 대응 등 다양한 용도로 사용 🎯 보안 모니터링 활용 사례 (HSHC) - 보안 데이터 수집 및 분석 - 다크웹에서 금융정보나 여권정보 거래가 일어났는지 모니터링 🎯 상품검색 및 자동완성 (이베이코리아) - 검색 뿐 아니라 상품검..
2023.11.22