Mac上缺少spring-boot-starter-web hibernate-validator依赖项

jin*_*jin 2 java validation spring dependencies spring-boot

我在STS(Spring工具套装)上创建了Spring启动项目(Spring启动项目),包括Window和Mac.这是我的pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>

    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.7.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </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-tomcat</artifactId>
            <scope>provided</scope>
        </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>
Run Code Online (Sandbox Code Playgroud)

Mac上缺少某些依赖关系层次结构.

示例:

冬眠验证器

  • validation-api(在Mac上丢失)
  • jboss-loggin(在Mac上丢失)
  • 同学(在Mac上失踪)

我需要Mac上的jar而不修改pom.xml.我想我错过了一些环境Mac.

我2天前买了Mac.这是我的第一台Mac.

lub*_*nac 8

如果要使用Hibernate Validator,则需要将其包含为显式依赖项:

    <dependency>
        <groupId>org.hibernate.validator</groupId>
        <artifactId>hibernate-validator</artifactId>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

请注意,我们没有指定版本,因为Spring Boot会处理它.

其他选项是使用Spring Boot提供的验证启动器:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-validation</artifactId>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

关于你的Windows/MacOS特定问题,这是一种误解.你需要我提到的依赖.如果包含它们,它将在两个平台上以相同的方式工作.