일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- OpenFeign
- mac os git error
- 스프링부트테스트
- java 버전 변경
- AWS CLI
- yum install java
- property or field 'jobparameters' cannot be found on object of type
- springbatch error
- aws
- error
- springboot
- java
- java 11
- easy
- maybe not public or not valid?
- java 1.8 11
- springboottest
- java 여러개 버전
- el1008e
- JUnit
- LeetCode
- No tests found for given includes
- log error
- no sources given
- querydsl no sources given
- Java 1.8
- java version
- parse
- Medium
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- Today
- Total
목록개발 (112)
쩨이엠 개발 블로그
서버의 정보를 노출하는 것도 해킹의 위험이 있다 그래서 보안 취약점으로 자주 걸리는 노출된 Server 정보를 숨기기로 한다 $ curl -i http://172.21.106.144:8080 HTTP/1.1 200 200 Date: Tue, 30 Jun 2020 08:51:33 GMT Server: Apache/2.4.5 (Unix) Set-Cookie: JSESSIONID=5B89ADE63BCD4E73EFD835B.Tomcat; Path=/; HttpOnly Content-Language: ko-KR Content-Length: 570 Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 curl을 날렸을 때 받는 Response에 Server 정보..
Class에서 초기화 메소드를 실행하고 싶다 @Service public class DataService { static Map qcPopMap; static Map qcItemMap; static List qcCycleList; DataService(){ initMap(); } private void initMap(){ qcStepConfigMap = new HashMap(); qcTargetDataMap = new HashMap(); qcCycleList = new ArrayList(); } } 예전이라면 생성자를 만들어서 그 안에다 집어넣어서 초기화를 시켜줄 수 있었다 DataService(){ initMap(); } 생성자로 init을 하고싶지 않다면 @PostConstruct를 사용한다 @Ser..
오랜만에 보는 스타트 실패 로그 ㅎㅎㅎㅎ *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the clas..
aws cli를 쓰기위해서는 aws 계정에 대한 configure를 써야한다 내 경우는 dev와 prod 두가지의 계정을 바꿔써야했다 $ aws configure list 결과값 Name Value Type Location ---- ----- ---- -------- profile None None access_key ****************4541 shared-credentials-file secret_key ****************H3R6 shared-credentials-file region ap-northeast-2 config-file ~/.aws/config 지금 현재는 profile 이름을 지정하지 않은 default의 경우이다 $ export AWS_DEFAULT_PROFILE=..
https://codebeautify.org/xmlviewer XML을 깔끔하게 보여줄 수 있다 JSON Formatter도 있음 https://jsonformatter.org/
요즘 stream 쓰는게 재밌다 뭔가 코드 간결해보이고(그렇진 않지만) 더 성능 좋아보이고 (그것도 아니지만) 그래서 이번에도 stream을 써서 list를 비교해보기로 했다 이번에 내가 해야할 일은 두 개의 List를 비교하여 있던건 추가하고 없던건 제거할 예정이다 @Test void testData(){ List targetList = Arrays.asList("a1", "a2", "a3", "a4"); List filterList = Arrays.asList("a3", "a4", "a5", "a6"); List filteredList = targetList.stream() .filter(target -> filterList.stream().noneMatch(Predicate.isEqual(targe..
AWSIoTDevice에는 shadow 기능이 있다 AWS IoT 콘솔에서 사물 -> 섀도우를 보면 섀도우 문서가 있는데 현재 내가 테스트할 프로퍼티는 REPORT_TOPIC이다 이것을 AWS SDK를 통해서 받아오도록 할 예정이다 섀도우의 desired JSON을 편집하면 sdk를 가진 AWSIoTDevice에서 받고 그 Device에서 reported JSON을 업데이트한다 AWS IoT -> Desired -> AWSIoTDevice AWS IoT
코드를 만드는데 매번 W와 세자리 숫자로 코드값을 넣어야할 때 String.format("W%03d", 24); //W024 W는 String으로 맨 앞에 놓고 %뒤의 숫자는 비었을 경우 넣는 숫자 3은 자릿수 d는 정수를 뜻한다 System.out.println(String.format("%3.3f", 24.2)); //24.200 System.out.println(String.format("%3f", 24.2)); //24.200000 f는 실수를 뜻하며 .를 기준으로 자릿수를 구분한다 .3 은 소숫점 3자리까지를 뜻하며 3.3은 2자리 정수 + 3자리 소숫점을 뜻한다 뒤의 자릿수를 표현하지 않으면 최대한 6자리까지 나온다
그냥 파일은 commit을 내부에서 잘 했는데 삭제된 파일이 어딜 가도 안보인다 $ git status를 했을 때 intellij 안에서는 commit으로 가도 얘가 안보였다 $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed: (use "git reset HEAD ..." to unstage) deleted: iot_back/src/main/.DS_Store deleted: iot_back/src/main/java/.DS_Store deleted: iot_back/src/main/java/com/.DS_Store deleted: iot_back/src/main/java/co..
테스트 시 이 테스트가 어떤건지 설명이 필요할 때 그리고 순서를 정해서 돌리고 싶을 때 사용하는 어노테이션 두개가 있다 @TestMethodOrder @DisplayName @TestMethodOrder 필요한 dependency org.springframework.boot spring-boot-starter-test test DataServiceTests.java @TestMethodOrder(MethodOrderer.OrderAnnotation.class) @RunWith(MockitoJUnitRunner.class) @ExtendWith(MockitoExtension.class) class DataServiceTests { @InjectMocks private DataService service; ..