HV000183: Unable to load 'javax.el.ExpressionFactory'. Check that you have the EL dependencies on the classpath, or use ParameterMessageInterpolator instead

HV000183: Unable to load 'javax.el.ExpressionFactory'. Check that you have the EL dependencies on th


解决方案:

添加依赖

<!-- EL Expression -->
<dependency>
    <groupId>javax.el</groupId>
    <artifactId>javax.el-api</artifactId>
    <version>2.2.4</version>
</dependency>
<dependency>
    <groupId>org.glassfish.web</groupId>
    <artifactId>javax.el</artifactId>
    <version>2.2.4</version>
</dependency>

相关文章:

  • 2021-12-20
  • 2021-05-30
  • 2021-10-09
  • 2022-12-23
  • 2021-08-10
  • 2021-05-31
  • 2021-07-19
猜你喜欢
  • 2022-12-23
  • 2021-10-20
  • 2022-12-23
  • 2021-06-21
  • 2021-04-27
  • 2021-11-22
  • 2021-06-27
相关资源
相似解决方案