# ๋ฐฉ๋ฒ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..