↧
Proxies: Why They’re Useful and How They’re Implemented
I wanted to write about lazy loading, but doing so requires some background on proxies. Proxies are such an interesting and useful concept that I decided it would be worthwhile to write a separate post...
View ArticleDalvik Bytecode Generation
Earlier, I discussed the use of dynamic proxies and how they can be implemented in Java. As we saw, a necessary part of proxying classes is bytecode generation. From its onset, something I wanted to...
View ArticleImplementing Spring-like Classpath Scanning in Android
One of the things that Spring 2.5 introduced back in 2007 was component scanning, a feature which removed the need for XML bean configuration and instead allowed developers to declare their beans using...
View Article