POJO 命名注意大小写- 第二个字母尽量不要大写

今天调试排序时发现一个异常org.hibernate.AnnotationException: property from @OrderBy clause not found: com....eSubEndDateTime。

 

原代码:

@OrderBy("eSubEndDateTime DESC")

 

修改如下代码后,测试正常。

@OrderBy("ESubEndDateTime DESC")

 

原来如果第二个字母大写,第一个字母小写,annotation就找不到,需要修改为前面两个字母都大写才能识别。

 

你可能感兴趣的:(Web)