🏫 Framework/🍃 Spring
-
🔥 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 -
👨💻 블로그 방문에 감사합니다! 안녕하세요. 팀드모네입니다. Eclipse 실행 시 Java 버전으로 인해 실행이 안될 때 해결하는 방법을 공유드립니다. 🎯 Eclipse가 요구하는 JDK 설치 https://jdk.java.net/java-se-ri/11 Java Platform, Standard Edition 11 Reference Implementations Java Platform, Standard Edition 11 Reference Implementations The official Reference Implementation for Java SE 11 (JSR 384) is based solely upon open-source code available from the JDK 11 Proj..
[Solved] Java 버전으로 인해 Eclipse 실행이 안될 때👨💻 블로그 방문에 감사합니다! 안녕하세요. 팀드모네입니다. Eclipse 실행 시 Java 버전으로 인해 실행이 안될 때 해결하는 방법을 공유드립니다. 🎯 Eclipse가 요구하는 JDK 설치 https://jdk.java.net/java-se-ri/11 Java Platform, Standard Edition 11 Reference Implementations Java Platform, Standard Edition 11 Reference Implementations The official Reference Implementation for Java SE 11 (JSR 384) is based solely upon open-source code available from the JDK 11 Proj..
2023.04.24 -
안녕하세요. 팀드모네입니다. 오늘은 Spring boot에서 robots.txt와 sitemap.xml 적용하는 방법을 공유드립니다. 1. robots.txt와 sitemap.xml 생성 작업 수행 해당 파일은 아래의 URL에서 작업하실 수 있습니다. robots.txt 자동 생성 사이트 : https://ciroapp.com/ko/free-tools/robots-txt-file-generator sitemap.xml 자동 생성 사이트 : https://www.xml-sitemaps.com/ 2. robots.txt와 sitemap.xml 을 templates에 배치 작업이 완료된 해당 파일들을 resources > templates에 위치시킵니다. 3. RequestMapping 작성 적당한 Contr..
Spring boot에서 robots.txt와 sitemap.xml 적용하는 방법안녕하세요. 팀드모네입니다. 오늘은 Spring boot에서 robots.txt와 sitemap.xml 적용하는 방법을 공유드립니다. 1. robots.txt와 sitemap.xml 생성 작업 수행 해당 파일은 아래의 URL에서 작업하실 수 있습니다. robots.txt 자동 생성 사이트 : https://ciroapp.com/ko/free-tools/robots-txt-file-generator sitemap.xml 자동 생성 사이트 : https://www.xml-sitemaps.com/ 2. robots.txt와 sitemap.xml 을 templates에 배치 작업이 완료된 해당 파일들을 resources > templates에 위치시킵니다. 3. RequestMapping 작성 적당한 Contr..
2023.01.29 -
오류 원인 - 커넥션 오류입니다. 해결방법 1. 톰캣 server.xml 설정 혹시 tomcat8.5를 사용한다면 아래의 코드를 사용하세욥 *tomcat8.5는 factory를 dbcp2로 쓰셔야됩니다. 2. Context.xml 설정 WEB-INF/web.xml ${catalina.base}/conf/web.xml 저는 위 방법으로 에러가 해결되었습니다. 혹시, 해결이 안되거나 특이사항이 있으시다면 댓글 남겨주세요~
Name [jdbc/oracle] is not bound in this Context 해결방법오류 원인 - 커넥션 오류입니다. 해결방법 1. 톰캣 server.xml 설정 혹시 tomcat8.5를 사용한다면 아래의 코드를 사용하세욥 *tomcat8.5는 factory를 dbcp2로 쓰셔야됩니다. 2. Context.xml 설정 WEB-INF/web.xml ${catalina.base}/conf/web.xml 저는 위 방법으로 에러가 해결되었습니다. 혹시, 해결이 안되거나 특이사항이 있으시다면 댓글 남겨주세요~
2020.12.28