Category: Java

자바 개발 관련 카테고리입니다.

Java

java.lang.IllegalArgumentException: Invalid ‘log4jConfigLocation’ parameter: class path resource [log4j.properties] cannot be resolved to URL because it does not exist

tomcat 서버 실행하면서 발생된 오류다.     심각: Exception sending context initialized event to listener instance of class org.springframework.web.util.Log4jConfigListener java.lang.IllegalArgumentException: Invalid 'log4jConfigLocation' parameter: class path...
Java

HttpPostedFileBase를 바이트(Bytes[]) 로 변환

BinaryReader 클래스를 사용하여 쉽게 변환이 가능하다. public static byte[] ConverToBytes(HttpPostedFileBase file) {             //방법 1             var length = file.InputStream.Length;             byte[] arrayData = null;             using (var binaryReader = new BinaryReader(file.InputStream))             {                 arrayData = binaryReader.ReadBytes(file.ContentLength);             }             return...
error: Content is protected !!