🏫 Framework
-
🔥 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 -
👨💻 블로그 방문에 감사합니다! 안녕하세요. 팀드모네입니다. 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 -
안녕하세요. 팀드모네입니다. 5분 내로 Mybatis의 장단점에 대해서 알아보겠습니다. Mybatis를 사용하는 방법은 모두들 아실테고 모른다면, 별로 어렵지 않으니 실제로 한번 써보시는게 빠릅니다. 때문에, 저는 용어 중심으로 설명드리겠습니다. 1. Mybatis란? - SQL Mapping Framework (공식 홈페이지 피셜) 세상에서 가장 유명한 SQL 맵핑 프레임워크라고 합니다. 2. 그래서 Mybatis 왜 씀? - 객체를 SQL이나 저장 프로시서와 매핑하기 위해 사용합니다. 3. 회사를 다니다보면 분업화가 잘 된 곳을 만날 때가 있습니다 - 화면은 프론트앤드 개발자 - 백단은 백앤드 개발자 - 데이터베이스 설계 및 SQL은 DBA가 담당하죠. 여기서 Mybatis의 장점이 도출됩니다. 4...
[5분 내로] Mybatis를 쓰는 시스템의 장단점을 알아보자안녕하세요. 팀드모네입니다. 5분 내로 Mybatis의 장단점에 대해서 알아보겠습니다. Mybatis를 사용하는 방법은 모두들 아실테고 모른다면, 별로 어렵지 않으니 실제로 한번 써보시는게 빠릅니다. 때문에, 저는 용어 중심으로 설명드리겠습니다. 1. Mybatis란? - SQL Mapping Framework (공식 홈페이지 피셜) 세상에서 가장 유명한 SQL 맵핑 프레임워크라고 합니다. 2. 그래서 Mybatis 왜 씀? - 객체를 SQL이나 저장 프로시서와 매핑하기 위해 사용합니다. 3. 회사를 다니다보면 분업화가 잘 된 곳을 만날 때가 있습니다 - 화면은 프론트앤드 개발자 - 백단은 백앤드 개발자 - 데이터베이스 설계 및 SQL은 DBA가 담당하죠. 여기서 Mybatis의 장점이 도출됩니다. 4...
2023.02.12