일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 도커
- 스프링
- react
- 자바
- 파이썬
- springboot
- Winform
- Java
- VOA
- DataGridView
- 코틀린
- Kotlin
- mybatis
- 스프링부트
- github
- AWS
- 리팩토링
- Spring Boot
- Spring
- MySQL
- 마이바티스
- c#
- 쿠버네티스
- git
- kubernetes
- Python
- machine-learning
- design pattern
- docker
- 리액트
- Today
- Total
목록스프링 부트 (2)
보뇨 다이어리
기존 Spring 만 만져보다가 boot 로 개발하니 신세계 :)초기 환경설정관련해서 문제가 발생해서 포스팅함빌드를 하니 아래 오류를 뱉음 12345678** WARNING ** : Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package.2019-02-02 22:38:38.630 WARN 2792 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory..
Spring Boot + Hibernate 를 이용하여 빠르게 기본세팅하고 기본으로 가지고 있는 findAll 메서드를 쓸려고헀음12345678910111213@RestController@RequestMapping("/auth")public class HomeController { private AccountRepository accountRepository; @RequestMapping(value="/request") public List index() { return accountRepository.findAll(); }}Colored by Color Scriptercs 근데 아래 사진처럼 에러를 뱉었다 디버깅결과는 return 값이 null 이라는데 뭔가 빠졌나 확인했는데 애초에 Repository..