“Bean Validation API 在类路径上,但找不到实现”阻止启动

Posted

技术标签:

【中文标题】“Bean Validation API 在类路径上,但找不到实现”阻止启动【英文标题】:"The Bean Validation API is on the classpath but no implementation could be found" preventing startup 【发布时间】:2018-07-07 01:52:00 【问题描述】:

我正在使用 Spring Tool Suite 来处理 Java 中的 ReST 服务。但在第一点,我无法启动我的第一个简单应用程序。请帮忙。我得到以下错误。 [使用Java8,STS套件,Ubuntu 16.04,$Java_Home:/usr/lib/jvm/java-8-oracle

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.4.2.RELEASE)

2018-01-28 09:37:14.658  INFO 7971 --- [           main] i.j.springbootstarter.CourseApiApp       : Starting CourseApiApp on rudresh-Vostro-14-3468 with PID 7971 (/home/rudresh/Documents/workspace-sts-3.9.2.RELEASE/course-api/target/classes started by rudresh in /home/rudresh/Documents/workspace-sts-3.9.2.RELEASE/course-api)
2018-01-28 09:37:14.667  INFO 7971 --- [           main] i.j.springbootstarter.CourseApiApp       : No active profile set, falling back to default profiles: default
2018-01-28 09:37:14.827  INFO 7971 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6dde5c8c: startup date [Sun Jan 28 09:37:14 IST 2018]; root of context hierarchy
2018-01-28 09:37:16.551  WARN 7971 --- [           main] s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration': Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties': Initialization of bean failed; nested exception is javax.validation.ValidationException: Unable to create a Configuration, because no Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath.
2018-01-28 09:37:16.552  INFO 7971 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown
2018-01-28 09:37:16.568  INFO 7971 --- [           main] utoConfigurationReportLoggingInitializer : 

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2018-01-28 09:37:16.578 ERROR 7971 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

The Bean Validation API is on the classpath but no implementation could be found

Action:

Add an implementation, such as Hibernate Validator, to the classpath

下面是我的 POM.xml 文件。整个示例取自 YouTube 上的 JavaBrains 教程,以供参考。我怀疑环境或我的系统中没有安装的休眠验证存在一些问题。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.javabrains.springbootquickstart</groupId>
  <artifactId>course-api</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Java Brains Course Api</name>



<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.2.RELEASE</version>
  </parent>
  <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>


    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

"This is main class to start SpringBoot application. Although it does not do anything but it should at least redirect to browser Error page."


package io.javabrains.springbootstarter;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class CourseApiApp 

    public static void main(String[] args) 
        // TODO Auto-generated method stub
        SpringApplication.run(CourseApiApp.class, args);
    


【问题讨论】:

主文件:: package io.javabrains.springbootstarter; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class CourseApiApp public static void main(String[] args) // TODO Auto-generated method stub SpringApplication.run(CourseApiApp.class, args); 您需要在 pom.xml 中添加以下依赖:------ org.hibernatehibernate-validator 您好 Dipak,感谢您的评论。这次我也添加了该标签,但问题仍然相同。我的系统中同时安装了 Eclipse 和 STS 套件。这会是个问题吗? 同样通过使用 spring-boot-starter-web,springboot 会下载 hibernate 验证器依赖。如我所见,我的 Maven 依赖项列表 但是你能在生成的jar文件中看到吗? 【参考方案1】:

在我的情况下,我添加了以下依赖项并且它有效,即使我不需要任何验证,也可能是 Java 更新导致了这个问题。

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-validation</artifactId>
</dependency>

【讨论】:

⬆️这是春天的官方回答 .... 为什么这不包含在启动 jar 大声笑中?不太清楚为什么这些事情必须过于复杂! 知道为什么这不能解决问题吗?【参考方案2】:

&lt;user_home&gt;/.m2/repository and try "maven --&gt; install 项目中删除所有文件。

文件似乎已损坏。因此,为了正确下载文件,请尝试此过程。

根本不需要添加任何其他依赖项。 'web' 注入缺少的验证器。

这里有同样的问题,通过执行此程序得到了解决。你只需要这样做一次,然后你就可以再去一次。 (有时 - 不要问为什么 - 本地 m2 存储库被损坏)。

希望对您有所帮助。问候,伊万

【讨论】:

仅仅添加spring-boot-starter-validation 也不足以让我的应用程序再次运行。但我不需要删除整个本地 maven 存储库。删除这个文件夹就足够了:~/.m2/repository/org/hibernate/validator【参考方案3】:

我遇到了同样的问题。我的项目有将近一年的生产时间,本周我需要进行一些更改,令人惊讶的是,该项目甚至无法构建。我通过向我的项目添加以下依赖项解决了这个问题。

<dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
        <version>$your-desired-version-matching-project-own</version>
</dependency>

注意:我使用的是 spring starters 依赖项,但仍未加载该依赖项。

【讨论】:

是的,这是最新 Spring Boot 中的一个变化。 github.com/spring-projects/spring-boot/wiki/…

以上是关于“Bean Validation API 在类路径上,但找不到实现”阻止启动的主要内容,如果未能解决你的问题,请参考以下文章