以下三个的名称应该一致

1 国际化文件

messages_en_US.properties

hr.viewPersonalInfo.Hobby_interest=Hobby/interest

2 JSP  EL 表达式标签名称

<td class="td_title">
      <spring:message code="hr.viewPersonalInfo.Hobby_interest" />
     <!-- Hobby_interest -->
 </td>
 <td class="td_type">
         ${personInfo.Hobby_interest}
 </td>

3 XML SQL 表达式表的别名

select hr_personalinfo.Hobby_interest as Hobby_interest from hr_personalinfo;

4 数据库表的字段名称

HR_PERSONALINFO 表名

Hobby_interest  字段名

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
  • 2021-06-27
  • 2022-01-01
  • 2022-12-23
  • 2021-05-25
猜你喜欢
  • 2021-07-23
  • 2022-12-23
  • 2021-12-18
  • 2022-02-11
  • 2021-05-05
  • 2021-11-03
  • 2021-10-10
相关资源
相似解决方案