Im using Spring Framework and Spring Security and I noticed that for Spring Security it is possible to write implementations for almost every class offered by Spring Security (lets say for Filters, Features (RememberMe) and so on). I like the possibility of writing custom implementations because it offers more flexibility and individuality.
Instead in Spring Framework itself I keep using the features offered (MVC, Annotations....) and not writing own implementations for anything. I haven't even got an idea where I could write my own implementation for. So I'd like to know if there are features from Spring Framework where own implementations can be written for? Or is it in general possible to write your own implementations for everything, just like in Spring Security?
Thanks for answering! :-)