Web Program/Spring FW2018. 7. 10. 18:08[오류] Deploying spring boot to wildfly

Caused by: java.lang.RuntimeException: java.lang.ClassCastException: org.apache.tomcat.websocket.server.WsServerContainer cannot be cast to io.undertow.websockets.jsr.ServerWebSocketContainer Spring boot 를 wildfly 에 배포(deploy) 시 아래와 같이 ServerWebSocketContainer, ClassCastExcepiton 오류로 인해 배포되지 않습니다. 17:31:53,205 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 99) MSC000001: Failed..

Web Program/Spring FW2018. 7. 7. 12:52[오류] Bean creation exception

org.springframework.beans.factory.support.DefaultListableBeanFactory:getTypeForFactoryBean:1524 Bean creation exception on non-lazy FactoryBean type check: org.springframework.beans.factory.BeanCreationException: Error creating bean with name Mapper scan 시 아래와 같이 sqlSessionFactory Bean 생성 참조에 문제가 있다는 WRAN 메시지가 발생됩니다. Cannot resolve reference to bean 'sqlSessionFactory' while setting bean propert..

[오류] Maven Build Problem - You need to run build with JDK or have tools.jar on the classpath.If
Web Program/Spring FW2018. 6. 30. 17:01[오류] Maven Build Problem - You need to run build with JDK or have tools.jar on the classpath.If

You need to run build with JDK or have tools.jar on the classpath.If this occures during eclipse build make sure you run eclipse under JDK as well (com.mysema.maven:apt-maven-plugin:1.0.9:process:default:generate-sources) 이클립스 빌드 시, 클래스 패스에 tools.jar이 필요하다는 문제입니다. pom.xml 에 오류 발생 com.mysema.maven apt-maven-plugin 1.0.9 process sts install path > STS.ini STS.ini 파일을 열어서 아래와 같이 추가 합니다. -startup pl..

Web Program/Spring FW2018. 6. 14. 22:50mybatis 동적 SQL 엘리먼트

동적 SQL 엘리먼트 엘리먼트 예 설명 SQL 문 태그는 어떤 값의 상태를 검사하여 참일 경우에만 SQL문을 포함하고 싶을 때 사용한다. test 속성에 지정된 조건이 참이면 태그의 내용을 반환한다. SQL 문 SQL 문 SQL 문 태그는 검사할 조건이 여러 개일 경우에 사용한디. test 속성에 지정된 조건이 참이면 태그의 내용을 반환한다. 일치하는 조건이 없으면 의 내용을 반환한다. SQL 문 SQL 문 태그는 WHERE 절을 반환한다. 안의 하위태그를 실행하고 나서 반환값이 있으면 WHERE 절을 만들어 반환하고, 없으면 WHERE 절을 반환하지 않는다. SQL 문 SQL 문 태그는 특정 단어로 시작하는 SQL문을 반환하고 싶을 때 사용한다. prefix는 반환값 앞에 붙일 접두어를 지정한다. pr..

Web Program/Spring FW2018. 6. 14. 22:30mybatis 에 미리 정의된 별명

Mybatis 예약어 별명 타입 _byte byte _short short _int, _integer int _long long _float float _double double _boolean boolean string java.lang.String decimal, bigdecimal java.math.BigBecimal map java.util.Map hashmap java.util.HashMap list java.util.List arraylist java.util.ArrayList collection java.util.Collection iterator java.util.Iterator object java.lang.Object Mybatis의 트랜잭션 관리 유형 트랜잭션 관리 유형 설명 JDBC..

image