Spring Boot应用程序失败-错误java包不存在

Posted

技术标签:

【中文标题】Spring Boot应用程序失败-错误java包不存在【英文标题】:Spring Boot application failure - Error java package does not exist 【发布时间】:2018-12-31 15:12:36 【问题描述】:

我有一个引用外部模块来执行结果的 Spring Boot 项目。

我已经在模块依赖下添加了外部模块:

但是,当我运行 Spring Boot 应用程序时,它会失败并出现以下错误: Error:(3, 16) java: package examples does not exist

以下源代码中的CustomerLossPrediction 引用外部模块并调用此模块失败,即使我将模块添加到项目工作区并正确添加了依赖项。

package com.example.demo.service;

import examples.CustomerLossPrediction;
import org.nd4j.linalg.api.ndarray.INDArray;
import org.springframework.web.multipart.MultipartFile;

import java.io.File;
import java.io.IOException;

@Service
public class DL4JServiceImpl implements DL4JService 
    @Override
    public String fetchPrediction(MultipartFile file) throws IOException, InterruptedException 
        File convFile = new File( file.getOriginalFilename());
        file.transferTo(convFile);
        INDArray array = new CustomerLossPrediction().generateOutput(convFile);
        return array.toString();
    

如果需要,这里是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>jar</packaging>

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

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.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-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <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>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.nd4j</groupId>
            <artifactId>nd4j-api</artifactId>
            <version>0.8.0</version>
        </dependency>
    </dependencies>

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


</project>

我认为这是因为我试图引用某个外部模块,或者另一个无法从 Spring Boot 模块中引用?

【问题讨论】:

你在组件注解标签中指定了bean吗? CustomerLossPrediction 不是 spring bean,它是外部模块上的普通 java 类。 你能通过IDE运行main方法吗?就像在 IntelliJ 中打开 DemoApplication.java 文件并单击左侧栏上出现的绿色按钮 【参考方案1】:

您必须将该外部模块添加为 Maven 依赖项。如果你不这样做,即使你设法从 IDE 运行它,它也将无法使用 Maven 构建。

在这里,您已经解释了如何将 JAR 安装为 Maven 工件。当您这样做时,将其作为依赖项包含在 POM 中

https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

【讨论】:

感谢您提供的重要信息。快速提问,是否可以在不需要从外部模块创建 jar 的情况下添加目录依赖或类似的东西? 我不知道,从来不需要它。 JAR 是自然分发包,因此您尝试做的事情在整个生态系统中都是不寻常的。要么将源代码添加到您的主项目,要么创建依赖项 JAR 并通过 maven 添加。 只是按照您的步骤。从外部模块创建了一个 jar。选择了所有实现+主方法存在的唯一类(主)。这是命令:mvn install:install-file -Dfile=dl4j.jar -DgroupId=dl4j -DartifactId=dl4j -Dversion=1.0.0 -Dpackaging=jar。然后在 pom.xml 文件中添加 jar 文件依赖。但是现在当我执行 spring boot 应用程序时,我得到了这个错误:java.lang.ClassNotFoundException: examples.CustomerLossPrediction 你添加到 POM 了吗? 是的,我加了:(

以上是关于Spring Boot应用程序失败-错误java包不存在的主要内容,如果未能解决你的问题,请参考以下文章

finishConnect(..) 失败:连接被拒绝:localhost/127.0.0.1,错误:Webflux、Webclient、Spring boot、java

Spring Boot 2.1.1:java.lang.IllegalStateException:运行单元测试时无法检索@EnableAutoConfiguration 基本包错误

多个 Spring Boot 错误:包 org.springframework.boot 不存在

Spring Boot - Font Awesome OTS 解析错误:转换失败

spring-boot 战争在启动时失败

为啥添加 @EnableAutoConfiguration 会导致 spring-boot 失败并显示“无法找到要扫描的 JPA 包”