멍청멍청기록/에러 일기 12

에러] ainedMappingJackson2HttpMessageConverter 에러 해결하기.

== 에러 문구 == 2021-04-20 11:04:27.493 WARN [127.0.0.1] [localhost] 9068 --- [nio-8087-exec-6] ainedMappingJackson2HttpMessageConverter [o.s.h.c.j.AbstractJackson2HttpMessageConverter > logWarningIfNecessary:205] : Failed to evaluate Jackson deserialization for type [[simple type, class kr.co.smartix.onestop.domain.CtiDomain]]: org.springframework.beans.BeanInstantiationException: Failed to instant..

tomcat error] 톰캣 에러 java.lang.IllegalStateException: Unable to complete the scan for annotations for web application

에러 메시지 INFO: Starting Servlet Engine: Apache Tomcat/7.0.106 Jan 08, 2021 9:58:39 AM org.apache.catalina.core.ContainerBase startInternal SEVERE: A child container failed during start java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/AsiaTotalManage]] at java.util.concurrent..

에러] gradle Tag mismatch! 에러 해결하기

집에서 PC로 gradle 셋팅을 했을 때 잘되던 프로젝트가 다른 PC에서 git으로 clone한 상태에서는 전혀 되고 있지 않았습니다. Rebulid를 해도 전혀 되지 않고 Tag mismatch! 라는 에러만 뜨고 있어서... 검색하는 중 https 의 주소를 http 로 바꾸라는 StackOverFlow의 글을 보고...!! 아래와 같은 부분을... repositories { mavenCentral() } 이와 같이 변경했습니다. repositories { //mavenCentral() maven { url "http://repo.mycompany.com/maven2" } } 결과는 정상적으로 gradle bulid가 되는 것을 확인했습니다! -,-.....엠병..

스프링부트 에러] Failed to bind properties under '' to com.zaxxer.hikari.HikariDataSource // feat.application.properties

*************************** APPLICATION FAILED TO START *************************** Description: Failed to bind properties under '' to com.zaxxer.hikari.HikariDataSource: Property: driverclassname Value: com.mysql.cj.jdbc.Driver Origin: "driverClassName" from property source "source" Reason: Failed to load driver class com.mysql.cj.jdbc.Driver in either of HikariConfig class loader or Thread con..

[IntelliJ 서버 에러] org.springframework.web.context.support.XmlWebApplicationContext - Exception encountered during context initialization

WARN : org.springframework.web.context.support.XmlWebApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'hikariConfig' defined in ServletContext resource [/WEB-INF/spring/root-context.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDe..

스프링 에러 03] log4j:ERROR 해결방법.

스프링 에러 log4j:ERROR Could not create the Layout. Reported error follows.java.lang.ClassNotFoundException: org.apache.log4j.PatternLayout 이 에러 때문에 엄청 애먹었네요. 123456789101112131415161718192021package com.popo.controller; import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.spri..