mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-06 13:08:19 +00:00
aa134fc423
Some notes from other attempts I made to fix this in a less hacky way: * Tried to @Autowire myResourceDaos from a setter (rather than using the annotation on a field), and initialize myResourceTypeToDao in that setter, instead. Couldn't get it to work: Spring started throwing odd bean dependency errors. Don't really understand why. * Tried to move the exceptions being thrown on null getDao(Class) results into that method, but that was breaking a test case. Didn't investigate why.