Hello guys, So, I was messing around with Audit options, and found out that using JDBC Audit with an Oracle database, it gives me an error while inserting a new record. The exception thrown says that I can't insert null on ID primary key column. I believe that was due to AuditTrailEntity using @GeneratedValue(strategy=GenerationType.IDENTITY), which didn't worked on Oracle until 12c. I've tried changing it to AUTO but the insert SQL still doesn't works...
Could this be a bug on CAS design? Since it uses hibernate to create the entity but inserts to it using direct jdbcTemplate? -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/bc0fc9e2-8d0d-4282-b9df-3fce18d74383%40apereo.org.
