I'm having the opposite issue with CAS 6.3.2
My table and column names in db are snake_case.
My classes and properties are CamelCase.
Cas is simply lower casing the names and they are not found in the db
I have a custom database source that I want to use CamelCase to SnakeCase. So I created my own naming strategy class. But it is not being picked up.
custom.mydbsource.physical-naming-strategy-class-name=org.apereo.cas.hibernate.CustomSnakecasePhysicalNamingStrategy
In my DataSource setup, do I have to explicitly need to read this property and call a setter for it?
I do not wish to change the naming strategy for all my db sources especially for those used and maintained by CAS. I only want to use this custom naming strategy on my custom datasource.
-psv