Мне нужно проверить остальные API и получить доступ к репозиториям и сервисным бинам, которые находятся за контроллерами в моем приложении Spring.Как я могу получить к ним доступ?Возможно ли использование JMX?
AccountRepository accountRepository = getBean(austin, AccountRepository.class);
protected SpringServerResource austin;
public <T> T getBean(SpringServerResource resource, String beanName, Class<T> beanType) {
return resource.getServer().getContext().getBean(beanName, beanType);
}