org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testRepository': Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate []: Specified class is an interface @Autowired private TestRepository testRepository; 으로 되어있던 걸 @MockBean private TestRepository testRepository; 으로 변경하면 된다.
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test @SpringBootTest Annotation은 @SpringBootApplication을 찾아가기 때문에 @SpringBootTest(classes = Test.class)로 사용해야 한다.
// 해당 코드 상에서는 null로 처리했지만 어뎁터 설정을 해야한다. HTTPAdapter httpAdapter = null; HttpClient httpClient = httpAdapter.getHttpClient(); HttpParams params = httpClient.getParams(); // 5초 HttpConnectionParams.setConnectionTimeout(params, 1000 * 5); HttpConnectionParams.setSoTimeout(params, 1000 * 5); HttpGet httpget = new HttpGet("http://localhost:8080/test); HttpResponse httpResponse = httpClient.execute(ht..
Java8에서 LocalDate를 쓸 때, String 값을 바로 LocalDate로 설정하고 싶을 경우, LocalDate localDate = LocalDate.parse("2019-12-23");위와 같이 사용한다. String Array의 형태 값을 LocalDate로 설정하고 싶을 경우, (ex. ["12", "23"]) LocalDate localDate = LocalDate.of(LocalDate.now().getYear(), Integer.parseInt(dateValue[0]), Integer.parseInt(dateValue[1]));위와 같이 설정한다. LocalDate.of의 정의는 다음과 같기 때문이다. public static LocalDate of(int year, int mo..
- Total
- Today
- Yesterday
- RxSwift UITetxtField
- passing data between ViewController and View
- urlrequest 모듈화
- urlsession 공통화
- swift generic
- ios framework device simulator
- swift delegate
- 코르도바 플러그인
- UIUserInterfaceStyle
- UITextField 글자수 제한하기
- Viewcontroller data
- Objective-C 프로젝트에서 Swift
- 코르도바 iOS
- xcode group folder
- iOS Dark Mode
- codable date
- 코르도바 Swift
- urlsession 모듈화
- codable
- Swift 프로젝트에서 Objective-C
- ios universal framework
- swift json 파싱
- xcode 16
- 코르도바 iOS Framework
- User Interface Style
- loadView
- linux java 설치
- loadView viewDidLoad
- urlrequest 공통화
- passing data between ViewControllers
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |