If an application is managed by the Spring container, can a developer still use class.forName() to create an instance of a particular class? Or will that violate the Spring container and result in some exception?
If an application is managed by the Spring container, can a developer still use
Share
Yes you can use it. The resulting object will not be managed by Spring, however.