일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- yum install java
- LeetCode
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- java 여러개 버전
- error
- Java 1.8
- java 버전 변경
- OpenFeign
- 스프링부트테스트
- mac os git error
- no sources given
- el1008e
- aws
- log error
- java version
- AWS CLI
- No tests found for given includes
- springboot
- java 11
- Medium
- property or field 'jobparameters' cannot be found on object of type
- java 1.8 11
- parse
- easy
- springboottest
- maybe not public or not valid?
- springbatch error
- JUnit
- querydsl no sources given
- Today
- Total
목록springboot (4)
쩨이엠 개발 블로그
1. 현상 OpenFeign을 사용하기 위해 dependency들을 추가했다 dependencies { ... implementation 'org.springframework.cloud:spring-cloud-starter-openfeign' } dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:2020.0.3" } } 그리고 빌드했더니 빌드 실패가 뜨면서 이런 에러가 보였다 > Could not resolve all files for configuration ':compileClasspath'. > Could not find org.springframework.cloud:spring-..
오랜만에 보는 스타트 실패 로그 ㅎㅎㅎㅎ *************************** 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..
테스트 시 이 테스트가 어떤건지 설명이 필요할 때 그리고 순서를 정해서 돌리고 싶을 때 사용하는 어노테이션 두개가 있다 @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; ..
@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..