일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vscode
- 인프런
- 디지몬
- 건담
- rails7
- 자바
- 비즈니스일본어
- 日本語
- springboot
- 一日一つメソッド
- java
- rails
- メソッド
- 건담베이스
- Flutter
- html
- C로 시작하는 컴퓨터 프로그래밍4판
- Python
- 일본어
- nico
- ruby
- Spring
- jsp
- 연습문제
- DART
- CSS
- javascript
- 반다이몰
- Web
- 単語
Archives
- Today
- Total
목록스프링 (1)
AR삽질러
Spring springBeen조회(8)
빈 이름으로만 조회 public class ApplicationContextBasicFindTest { AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AppConfig.class); @Test @DisplayName("빈 이름으로 조회") void findBeanByName(){ MemberService memberService = ac.getBean("memberService", MemberService.class); Assertions.assertThat(memberService).isInstanceOf(MemberServiceImpl.class); } memberService 빈을 MemberService..
JAVA/Spring
2023. 7. 16. 11:48