I doubt this can be considered an objective question, but let's have a shot at this.
I've had quite some discussions about this, and it's certainly not only you that's thinking this way.
Yes, doing it that way makes IoC somewhat pointless. It still makes it easier because you dont have to figure out the ideal wiring order yourself, but you lose the advantage of being able to switch implementations by changing a configuration file, which is one of the reasons we started with IoC in the first place.
There seem to be two main approaches to switching between implementations now:
- Use Qualifiers
You can add an annotation on your implementation, and another one on your injection point, which will tell the container which one you want to use. You still have to change your code in two spots though, so it's the same as implementing a sub-interface and wiring that by type. It's also still hard-coded.
- Use a beanconfigurer
Spring has this beanconfigurer concept, which just replaces the old xml files. You can handle the configuration in a certain class which will tell the container how to wire. I don't see the advantage over the old style (for this cause, xml syntax is more readable), but I guess it's a matter of taste.
For me, the only way to use autowiring by type in a decent way is to play with the classpath, so that you can pop in mocks instead of implementations by including a different class. But since java classpath has such a user-friendly interface, I also don't think this is easier than the old xml way of doing things.
So in the end, I think it all comes down to a matter of taste. Yes, autowiring using annotations is a lot easier, but it does hardcode your configuration into your code, just as you say. The question becomes, does it really change that often that it warrants a 'softcoding' approach?