일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 파일업로드
- Xcode
- 클라우드 서비스
- 깃
- 서평
- java
- git push
- SpringBoot
- 콜미동구
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- 에러
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- JavaScript
- MySQL
- 자바스크립트
- 책
- 클라우드 서비스 특징
- 동구
- git
- 기록하는 동구
- Mapper
- 파이썬 웹크롤링
- 독후감
- Swift
- 데이메이커
- Mac
- 오류
- spring
- 줄거리
- 한줄평
- Today
- Total
목록spring (2)
인생은 속도가 아니라 방향이다
Spring MVC에서 @ModelAttribute을 메소드의 파라미터로 사용할경우 프로그램이 어떻게 돌아가는지 궁금해졌다. 일단 내 컨트롤 단은 이렇게 생겼고 , test메소드안에 @ModelAttribute("test") 를 파라미터로 가지고있는 형태이다. 결과는 true,false를 반환하게 해놓았다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 @Controller public class TestController { @Autowired private TestService service; @GetMapping("/test") public String test(@ModelAttribute("test") Test test, Model model) { model.addAttribute("..
콘솔을 보면 'com.springboot.test.mapper.FileUploadMapper' bean을 못찾는다고 나온다. 어플리케이션 클래스 안에 @MapperScan(basePackages={"해당패키지"})넣어주면 해결! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package com.springboot.test; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication @MapperScan(base..