พิมพ์ถั่วสปริงทั้งหมดที่ใส่ไว้


คำตอบ:


88

ใช่รับทราบApplicationContextและโทร.getBeanDefinitionNames()

คุณสามารถรับบริบทได้โดย:

  • การนำไปใช้ ApplicationContextAware
  • ฉีดด้วย@Inject/ @Autowired(หลัง 2.5)
  • ใช้ WebApplicationContextUtils.getRequiredWebApplicationContext(..)

ที่เกี่ยวข้อง: คุณยังสามารถตรวจจับการลงทะเบียนของถั่วแต่ละชนิดได้โดยการลงทะเบียนBeanPostprocessorถั่ว จะมีการแจ้งเตือนสำหรับแต่ละถั่ว


1
เหตุผลที่ต้องใช้ApplicationContextAwareอินเทอร์เฟซเนื่องจาก Spring framework เปิดโอกาสให้เข้าถึงบริบทของแอปพลิเคชัน คุณควรวางไว้ใน@Configurationชั้นเรียนสำหรับบริบทแอปพลิเคชันที่ต้องการ
smwikipedia

ลิงค์ที่เกี่ยวข้อง: stackoverflow.com/questions/14829258/…
smwikipedia

1
applicationContext.getBeanDefinitionNames () ไม่แสดงถั่วที่ลงทะเบียนโดยไม่มีอินสแตนซ์ BeanDefinition คุณจะไม่สามารถแสดงรายการถั่วเดี่ยวที่ลงทะเบียนด้วยตนเองได้ ex- :) คุณไม่สามารถแสดงรายการสภาพแวดล้อม systemProperties ถั่ว systemEnvironment อย่างไรก็ตามถั่วเหล่านี้มีอยู่ในภาชนะ คุณสามารถกำหนดเส้นทางอัตโนมัติโดยใช้ @Auwired Environment env เป็นต้นstackoverflow.com/a/54863282/1840774
Velu

67
public class PrintBeans {
    @Autowired
    ApplicationContext applicationContext;

    public void printBeans() {
        System.out.println(Arrays.asList(applicationContext.getBeanDefinitionNames()));
    }
}

applicationContext.getBeanDefinitionNames () ไม่แสดงถั่วที่ลงทะเบียนโดยไม่มีอินสแตนซ์ BeanDefinition คุณจะไม่สามารถแสดงรายการถั่วเดี่ยวที่ลงทะเบียนด้วยตนเองได้ ex- :) คุณไม่สามารถแสดงรายการสภาพแวดล้อม systemProperties ถั่ว systemEnvironment อย่างไรก็ตามถั่วเหล่านี้มีอยู่ในภาชนะ คุณสามารถกำหนดเส้นทางอัตโนมัติโดยใช้ @Auwired Environment env เป็นต้นstackoverflow.com/a/54863282/1840774
Velu

22

พิมพ์ชื่อ bean และคลาสทั้งหมด:

package com.javahash.spring.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class HelloWorldController {

    @Autowired
    private ApplicationContext applicationContext;

    @RequestMapping("/hello")
    public String hello(@RequestParam(value="key", required=false, defaultValue="World") String name, Model model) {

        String[] beanNames = applicationContext.getBeanDefinitionNames();

        for (String beanName : beanNames) {

            System.out.println(beanName + " : " + applicationContext.getBean(beanName).getClass().toString());
        }

        model.addAttribute("name", name);

        return "helloworld";
    }
}

1
applicationContext.getBeanDefinitionNames () ไม่แสดงถั่วที่ลงทะเบียนโดยไม่มีอินสแตนซ์ BeanDefinition คุณจะไม่สามารถแสดงรายการถั่วเดี่ยวที่ลงทะเบียนด้วยตนเองได้ ex- :) คุณไม่สามารถแสดงรายการสภาพแวดล้อม systemProperties ถั่ว systemEnvironment อย่างไรก็ตามถั่วเหล่านี้มีอยู่ในภาชนะ คุณสามารถกำหนดเส้นทางอัตโนมัติได้โดยใช้ @Auwired Environment env เป็นต้นstackoverflow.com/a/54863282/1840774
Velu

19

ด้วย Spring Boot และสตาร์ทเตอร์แอคชูเอเตอร์

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

คุณสามารถตรวจสอบจุดสิ้นสุด /beans


2
คำถามคือสำหรับ Spring 2.0 ไม่ใช่ Spring Boot
TMN

8

applicationContext.getBeanDefinitionNames ()ไม่ได้แสดงถั่วซึ่งมีการลงทะเบียนโดยไม่ต้องเช่น BeanDefinition

package io.velu.core;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan
public class Core {

public static void main(String[] args) {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Core.class);
    String[] singletonNames = context.getDefaultListableBeanFactory().getSingletonNames();
    for (String singleton : singletonNames) {
        System.out.println(singleton);
    }       
}

}


เอาต์พุตคอนโซล

environment
systemProperties
systemEnvironment
org.springframework.context.annotation.internalConfigurationAnnotationProcessor
org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry
org.springframework.context.event.internalEventListenerProcessor
org.springframework.context.event.internalEventListenerFactory
org.springframework.context.annotation.internalAutowiredAnnotationProcessor
org.springframework.context.annotation.internalCommonAnnotationProcessor
messageSource
applicationEventMulticaster
lifecycleProcessor

ในขณะที่คุณสามารถมองเห็นในการส่งออก, สภาพแวดล้อม, systemProperties, systemEnvironmentถั่วจะไม่ได้รับการแสดงโดยใช้context.getBeanDefinitionNames ()วิธีการ

สปริงบูต

สำหรับเว็บแอ็พพลิเคชัน Spring Boot คุณสามารถแสดงรายการถั่วทั้งหมดโดยใช้จุดสิ้นสุดด้านล่าง

@RestController
@RequestMapping("/list")
class ExportController {

@Autowired
private ApplicationContext applicationContext;

@GetMapping("/beans")
@ResponseStatus(value = HttpStatus.OK)
String[] registeredBeans() {
    return printBeans();
}

private String[] printBeans() {
    AutowireCapableBeanFactory autowireCapableBeanFactory = applicationContext.getAutowireCapableBeanFactory();
    if (autowireCapableBeanFactory instanceof SingletonBeanRegistry) {
        String[] singletonNames = ((SingletonBeanRegistry) autowireCapableBeanFactory).getSingletonNames();
        for (String singleton : singletonNames) {
            System.out.println(singleton);
        }
        return singletonNames;
    }
    return null;
}

}


["autoConfigurationReport", "springApplicationArguments", "springBootBanner", "springBootLoggingSystem", "environment", "systemProperties", "systemEnvironment", "org.springframework.context.annotation.internalConfigurationAnnotationProcessor", "org.springframework.bootoconigure internalCachingMetadataReaderFactory "," org.springframework.boot.autoconfigure.conditionBeanTypeRegistry "," org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry "," propertySourcesSourcesPlaceholderConfigurer "," org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry "," propertySourcesSourcesPlaceholderConfigurer , "PreserveErrorControllerTargetClassPostProcessor "," org.springframework.context.annotation.internalAutowiredAnnotationProcessor "," org.springframework.context.annotation.internalRequiredAnnotationProcessor "," org.springframework.context.annotation.inextring.extommonnotationProcessor " ConfigurationPropertiesBindingPostProcessor "," org.springframework.scheduling.annotation.ProxyAsyncConfiguration "," org.springframework.context.annotation.internalAsyncAnnotationProcessor "," methodValidationPostProcessor "," embedServletContainerCustomizerRoanPost "ข้อความapplicationEventMulticaster "," org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration $ EmbeddedTomcat "," tomcatEmbeddedServletContainerFactory "," org.springframework.boot.autoconfigure.websocketWebSocketAutoConfigure.websocketWebSocketAutoConfiguration " org.springframework.boot.autoconfigure.web.HttpEncodingProperties "," org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration "," localeCharsetMappingsCustomizer "," org.springframework.boot.autoconfigure.web.SutoConfiguration "," localeCharsetMappingsCustomizer "," org.springframework.boot.autoconfigure.web.SutoConfiguration duplicateServerPropertiesDetector "," spring.resources-org.springframework.bootautoconfigure.web.ResourceProperties "," org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration $ DefaultErrorViewResolverConfiguration "," conventionErrorViewResolver "," org.springframework.boot.autoconfigure.web.ErrorMacion "," conventionErrorViewResolver "," org.springframework.boot.autoconfigure.web.Error contextParameters "," contextAttributes "," spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties "," spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties "," org.springframework boot.autoconfigure.web.MultipartAutoConfiguration "," multipartConfigElement "," org.springframework.boot.autoconfigure.webDispatcherServletAutoConfiguration "DispatcherServletRegistrationConfiguration", "org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration $ DispatcherServletConfiguration", "dispatcherServlet", "dispatcherServletRegistration.boot.autoconfigure.web.DispatcherServletAutoConfiguration $ DispatcherServletConfiguration", "dispatcherServlet", "dispatcherServletRegistration. , "httpPutFormContentFilter", "characterEncodingFilter", "org.springframework.context.event.internalEventListenerProcessor", "org.springframework.context.event.internalEventListenerFactory", "reportGeneratorApplication", "exportController", "exportSerring. บูตautoconfigure.AutoConfigurationPackages "," org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration "," org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration $ Jackson2ObjectMapperBuilderCustomizerConfiguration "," spring.jackson.configuration JacksonProperties "," standardJacksonObjectMapperBuilderCustomizer "," org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration $ JacksonObjectMapperBuilderConfiguration "," org.springframework.boot.autoconfigure.jackson.JompentCildring boot.autoconfigure.jacksonJacksonAutoConfiguration $ JacksonObjectMapperConfiguration "," jacksonObjectMapper "," org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration "," org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfring. , "org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration", "defaultValidator", "org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration $ WhitelabelErrorViewConfiguration", "error", "beanNameViewResolver" error , "org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration $ EnableWebMvcConfiguration "," org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration $ WebMvcAutoConfigurationAdapter "," mvcContentNegotiationManager "," org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration $ WebMvcAutoConfigurationAdapter "," mvcContentNegotiationManager "," org.springframework.boot.autvert boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration $ MappingJackson2HttpMessageConverterConfiguration "," mappingJackson2HttpMessageConverter "," org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration "," messageConfiguration "," messageConfiguration "," messageConfiguration "," messageConfiguration "," messageConfiguration ","requestMappingHandlerAdapter", "mvcResourceUrlProvider", "requestMappingHandlerMapping", "mvcPathMatcher", "mvcUrlPathHelper", "viewControllerHandlerMapping", "beanNameHandlerMapping", "resourceHandlerMapping", "defaultServletHandlerMapping", "mvcUriComponentsContributor", "httpRequestHandlerAdapter", "simpleControllerHandlerAdapter", "handlerExceptionResolver" , "mvcViewResolver", "org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration $ WebMvcAutoConfigurationAdapter $ FaviconConfiguration", "faviconRequestHandler", "faviconHandlerMapping", "defaultViewResolver", "viewResolver "," welcomePageHandlerMapping "," org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration "," objectNamingStrategy "," mbeanServer "," mbeanExporter "," org.springframework.boot.autoconfigure.adminAdmin.SpringApplication " , "org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration", "org.springframework.boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration", "spring.info-org.springframework.boot.autoconfigure.info.ProjectInfo. springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration "," multipartResolver "," org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration $ RestTemplateConfiguration "," restTemplateBuilder "," org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration "," spring.devtools-org.springframework.boot.vigure org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration $ RestartConfiguration " "fileSystemWatcherFactory", "classPathRestartStrategy", "classPathFileSystemWatcher", "hateoasObjenesisCacheDisabler", "org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration $ LiveReloadConfiguration $ LiveReloadServerConfiguration"," org.springframework.boot.devtools.autoconfigureLocalDevToolsAutoConfiguration $ LiveReloadConfiguration "," optionalLiveReloadServer "," org.springframework.boot.devtools.autoconfigure.LocalDevToolsAutoConfiguration "," lifecycleProcessor "]


6

คุณสามารถลองโทร

org.springframework.beans.factory.ListableBeanFactory.getBeansOfType(Object.class)

หรือเปิดการบันทึกการแก้ไขข้อบกพร่องสำหรับorg.springframework. (ในสปริงบูตซึ่งใช้พารามิเตอร์--logging.level.org.springframework=DEBUG)


ListableBeanFactoryเป็นอินเทอร์เฟซ เราจะได้รับอินสแตนซ์ของคลาสที่ขยายอินเทอร์เฟซนั้นจากที่ไหนเพื่อดำเนินการเมธอดgetBeansOfTypeหรือวิธีการอื่นใดในอินเทอร์เฟซ ฉันเห็นว่าApplicationContextมันขยายออกไป แต่ตัวอย่างของคุณไม่ได้แสดงวิธีการได้มาซึ่งหนึ่งในนั้น
ErikE

คุณสามารถเพิ่มฟิลด์@Autowired ListableBeanFactory listableBeanFactoryและคุณจะได้รับหนึ่งฟิลด์(ประเภทการใช้งานไม่สำคัญ)
artbristol

1

การใช้ spring-boot-starter-actuatorคุณสามารถเข้าถึงถั่วทั้งหมดได้อย่างง่ายดาย

ขั้นตอนการตั้งค่ามีดังนี้

  1. เพิ่มการพึ่งพาลงใน gradle :

เพิ่มการร้องลงในไฟล์ gradle:

compile("org.springframework.boot:spring-boot-starter-actuator")
  1. เปิดใช้งานการรักษาความปลอดภัยบน application.properties :

เพิ่มmanagement.security.enabled=falseลงในไฟล์ application.property ของคุณ

  1. โทร / ถั่วปลายทาง :

    หลังจากนั้นสปริงการตั้งค่าจะเปิดใช้งานจุดสิ้นสุดที่เกี่ยวข้องกับเมตริกบางส่วน หนึ่งในจุดสิ้นสุดคือ/ beans หลังจากเรียกจุดสิ้นสุดนี้แล้วมันจะให้ไฟล์ json ที่มี bean ทั้งหมดของคุณรวมถึงการพึ่งพาและขอบเขต

นี่คือตัวอย่างไฟล์ json:

[{"context":"application:8442","parent":null,"beans":[{"bean":"beanName","aliases":[],"scope":"singleton","type":"packageName$$4b46c703","resource":"null","dependencies":["environment","beanName1","beanName2"]},{"bean":"org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory","aliases":[],"scope":"singleton","type":"org.springframework.core.type.classreading.CachingMetadataReaderFactory","resource":"null","dependencies":[]}]

สำหรับข้อมูลเพิ่มเติมโปรดเยี่ยมชมลิงค์ร้อง:

หวังว่านี่จะช่วยคุณได้ ขอบคุณ :)


1
spring! = spring-boot
Himanshu Bhardwaj

ใช่นั่นคือพี่ชายแท้ๆ :) วิธีนี้ใช้สำหรับการบูตแบบวิ่ง
Md. Sajedul Karim

1

นี่เป็นอีกวิธีหนึ่งในการพิมพ์ชื่อ bean ทั้งหมดจากบริบทแอปพลิเคชัน spring

import java.util.Arrays;
import java.util.concurrent.atomic.AtomicInteger;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;

/***********************************************************************************************************
 * Java File: MainApplication.java
 * Description: Main class to run the application.
 * 
 ***********************************************************************************************************/

@SpringBootApplication
public class MainApplication {

private static final Logger logger = LogManager.getLogger(MainApplication.class);

public static void main(String[] args) 
{
    final ConfigurableApplicationContext context = SpringApplication.run(MainApplication.class, args);

    final AtomicInteger counter = new AtomicInteger(0);
    logger.info("**************** START: Total Bean Objects: {} ******************", context.getBeanDefinitionCount());

    Arrays.asList(context.getBeanDefinitionNames())
    .forEach(beanName -> {
        logger.info("{}) Bean Name: {} ", counter.incrementAndGet(), beanName);
    });

    logger.info("**************** END: Total Bean: {} ******************", context.getBeanDefinitionCount());
}

}


Sample Output:

2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:18] - **************** START: Total Bean Objects: 564 ****************** 
...........................
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:22] - 460) Bean Name: mvcPathMatcher  
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:22] - 461) Bean Name: mvcUrlPathHelper  
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:22] - 462) Bean Name: viewControllerHandlerMapping  
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:22] - 463) Bean Name: beanNameHandlerMapping  
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:22] - 464) Bean Name: resourceHandlerMapping 
...........................
2019-11-27 20:08:02.821 INFO  [main] [c.c.a.MainApplication:25] - **************** END: Total Bean: 564 ****************** 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.