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

hibernate validator 抛出的异常

异常内容:

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


异常解决:

在pom.xml中导入,就行了

<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>


希望能帮助到你们


版权声明:本文为icoudsoft_saas原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。