Serializable + transient findbugs fixes
Findbugs complains in view-classes about @EJB injected classes not being serializable This is actually wrong, and actually the injected class is a serializable object which is managed correctly by CDI and EJB. This is explained in detail in https://stackoverflow.com/a/45681747 Due to incorrect understanding of the not so obvious problem, many @EJB annotated fields were marked 'transient' which is incorrect. We also add 'Serializable' inheritance to many classes which actually should be serializable
Showing
with
424 additions
and
405 deletions
-
Please register or sign in to post a comment