Community
Participate
Working Groups
Build Identifier: I-3.3.0-20110305235707 Giving the right setting first in the mapping file like below <package>test.oracle.models</package> <entity class="employee.Employee"></entity> Then changing the package to an invalid one like below either by directly editing the mapping file source or thorugh the package chooser. Validation of the mapped class should be given against the invalid package, at least saying the mapped class cannot be resolved. <package>BLAHBLAH</package> <entity class="employee.Employee"></entity> But if giving an invalid class name like below, some validation will show up. <package>BLAHBLAH</package> <entity class="employee.EmployeeAAA"></entity> Changing the class name back to the right one like below, the validaiton will remain with the invalid package name, which is what we expect. <package>BLAHBLAH</package> <entity class="employee.Employee"></entity> Reproducible: Always
Created attachment 197548 [details] proposed patch against head
checked in to HEAD for 3.0.1