I'm trying to insert into my database table, which I set up with hibernate/Spring, and I'm getting the following error
The class 'Layouts' does not have the property 'SubjectName'
The error is coming from the line
input type="text" name="SubjectName" size="50" value="${fn:escapeXml(layout.SubjectName)}"
but I clearly have SubjectName defined in my 'Layouts' model file as a String, and its in my hbm.xml file as
property name="SubjectName" type="string" column="SUBJECT"/
I also can't select form the database, although it's not giving an error. I feel like its coming from the same root problem