# 방법ApplicationContext.containsBean(String beanName); # 예제package com.test.util;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.ApplicationContext;import org.springframework.stereotype.Component;@Componentpublic class SearchUtil { @Autowired ApplicationContext applicationContext; public boolean checkService(String serviceName) { if (applicat..