Spring Java 8의 기능 인터페이스에서 서비스 클래스 메소드에 액세스 할 수 있습니까? 1. 질문(문제점): Spring Java 8의 기능 인터페이스에서 서비스 클래스 메소드에 액세스하고 싶습니다. 가능합니까? public interface UserProfile extends Supplier { // This is working static UserProfile getMyId() { return () -> new UserProfileDto( SecurityContextHolder.getContext().getAuthentication().getName(), "", "", ""); } static UserProfile getMyProfile() { return () -> } } @Service("..