일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- No tests found for given includes
- easy
- springboottest
- 스프링부트테스트
- LeetCode
- springbatch error
- OpenFeign
- springboot
- java version
- aws
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- AWS CLI
- java 여러개 버전
- no sources given
- java
- querydsl no sources given
- property or field 'jobparameters' cannot be found on object of type
- Medium
- java 1.8 11
- yum install java
- maybe not public or not valid?
- log error
- error
- mac os git error
- java 버전 변경
- Java 1.8
- JUnit
- java 11
- el1008e
- parse
- Today
- Total
목록개발/JAVA (15)
쩨이엠 개발 블로그
에러내용 : org.apache.tomcat.util.http.fileupload.FileUploadException: the request was rejected because no multipart boundary was found postman으로 파일 업로드를 하려다 실패했다 header body 에러 수정 header에서 Content-Type을 multipart/form-data 로 특정짓지 않으면 된다
@ConfigurationProperties property파일에 있는 키들을 객체로 만들어 접근할 수 있게 만드는 어노테이션이다 필요한 dependency org.springframework.boot spring-boot-configuration-processor true application.yml adminapi: restapi: urlprefix: "urlprefix" token: "token-auth" period: 300 max-window-size: 3600 이 경우 객체로 받을 때 prefix로 adminapi를 사용하면 그 밑의 property에 접근할 수 있다 AppConfig.java package com.test.config; import lombok.Getter; import lo..
tomcat에 war 파일을 배포하려면 톰캣의 webapps 경로로 가야한다 가서 디렉토리를 보면 ROOT.war 파일을 볼 수 있다 > cd /tomcat/webapps > ll drwxr-x---+ 5 tomcat tomcat 4096 Jun 20 2017 manager drwxr-xr--+ 6 tomcat tomcat 4096 Feb 3 13:46 ROOT -rw-r--r--+ 1 tomcat tomcat 38095152 Apr 29 18:12 ROOT.war 내 파일을 대체해준다 혹시 모르니 backup파일로 남겨놓을것 > mv ROOT.war ROOT.war.back > mv my-file.war ROOT.war 그리고 tomcat start 하면 제대로 뜨는 것을 확인 할 수 있다 ROOT가 ..
| MismatchedInputException: Cannot deserialize instance of 'java.util.ArrayList' out of START_OBJECT token curl 명령어를 날렸는데 Jackson MismatchedInputException 에러가 떨어졌다 converting 에러인 것 같아서 확인해보았다 넣으려는 데이터 '{"reqId":"1588126260","reqTime":1588126260,"payloads":{"collTime":1588126260,"data":[{"property":"WP080","value":"false"}]}}' 받을 객체 @Getter @Setter public class Wrapper { private String reqId; pri..
Jackson databind시 에러나는경우 UnrecognizedPropertyException이 발생한다 ObjectMapper objectMapper = new ObjectMapper(); Data data = objectMapper.readValue(info, Data.class); 이 때 Unrecognized field , not marked as ignorable (one known property) 에러가 났는데 내 경우에는 Data 객체 안에 info에 대한 필드가 존재 하지 않는 경우였다 파싱하고 싶은 데이터는 {“content”:{“id”:”sensorId_001”,”topic”:”sensor-data-test”},”datainfo”:{“reqTime”:1588126260, “reqI..