jabrena / spring-boot-user-beans

A visual way to increase the developer awareness to minimize the number of Beans in memory.
https://jabrena.github.io/spring-boot-user-beans/
Apache License 2.0
53 stars 3 forks source link

Retrieve Dependency Information from UserBeansDependencyService #132

Closed jabrena closed 1 year ago

jabrena commented 1 year ago

Currently, the method: getDependencyDocuments returns List and the object DependencyDocument doesn´t retrieve information about every dependency:

public record DependencyDocument(String beanName, String beanPackage, List<String> beanDependencies, String dependency) {}

Retrieve the dependency information in that method.

jabrena commented 1 year ago

Postponed