반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Visual Studio Code
- Maven
- 자바
- Files
- input
- 테이블
- Array
- 배열
- windows
- CMD
- json
- IntelliJ
- Java
- date
- string
- 이탈리아
- 자바스크립트
- html
- vscode
- list
- Eclipse
- table
- 문자열
- js
- 이클립스
- 인텔리제이
- Button
- ArrayList
- CSS
- javascript
Archives
- Today
- Total
목록getBeanDefinitionNames (1)
어제 오늘 내일
[Spring] 등록 된 모든 Bean 목록 출력하기
getBeanDefinitionNames() ApplicationContext의 이 메소드는 ApplicationContext 안의 모든 Bean 이름을 배열로 리턴합니다. 이 메소드를 이용하여 등록된 모든 Bean의 목록을 출력할 수 있습니다. @SpringBootApplication public class HelloSpringApplication { private static ApplicationContext context; public static void main(String[] args) { context = SpringApplication.run(HelloSpringApplication.class, args); printBeanList(); } public static void printBea..
IT/SpringBoot
2024. 4. 8. 00:18