Heroku 不允许 creating/reading 来自进程

Heroku not allowing creating/reading from process

当我注意到它不断抛出 java.util.NoSuchElementException: No line found 时,我正在做一个涉及从另一个进程读取的项目,所以我制作了一个 Maven 测试应用程序来检查它是 Heroku 的错误而不是我的程序的错误。

src/main/java/com/test/App.java:

package com.test;
import java.util.Arrays;
import java.util.Scanner;
import java.io.IOException;
public class App{
    public static void main(String[] args) throws IOException{
        System.out.println(new Scanner(new ProcessBuilder(Arrays.asList("java", "A")).start().getInputStream()).nextLine());
    }
}

A.java:

public class A{
    public static void main(String[] args){
        System.out.println("Test");
    }
}

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.test</groupId>
  <artifactId>test</artifactId>
  <version>1.0</version>

  <name>test</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.1.0</version>
        </plugin>
        <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-jar-plugin</artifactId>
          <version>3.0.2</version>
          <configuration>
            <archive>
              <manifest>
                <mainClass>com.test.App</mainClass>
              </manifest>
            </archive>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
        <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
        <plugin>
          <artifactId>maven-site-plugin</artifactId>
          <version>3.7.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-project-info-reports-plugin</artifactId>
          <version>3.0.0</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

javac A.javamvn installjava -jar target/test-1.0.jar 之后,它在我的计算机上打印“Test”,但在 Heroku 中抛出 NoSuchElementException

完整堆栈跟踪:

Exception in thread "main" java.util.NoSuchElementException: No line found
    at java.util.Scanner.nextLine(Scanner.java:1540)
    at com.test.App.main(App.java:7)

有谁知道是什么原因造成的以及如何解决?

编辑:附上 Github repo 以希望更清楚

编辑 编辑:奇怪的是,如果我将 A.java 放入 src/main/java 并使用@Malax 的回答中的命令,它会起作用,但我仍然不明白为什么 Heroku 没有看到java 文件在 src 之外。也许它正在修剪它们以节省 space?

出现此问题是因为您在 Scanner 上调用 nextLine 时没有检查是否有线路。您需要检查 hasNext 以确保 nextLine 不会失败。

你没有得到任何行的根本原因是你在调用 java 时没有指定 class 路径。如果没有它,java 将无法找到您编译的 A class,并且会因类似

的内容而失败
Error: Could not find or load main class A
Caused by: java.lang.ClassNotFoundException: A

在您未使用 getInputStream 捕获的 STDERR 上。当您改用 getErrorStream 时,您将能够阅读错误消息(但您将不会收到 STDOUT 消息)。

这与 Heroku 无关,我只能推测为什么这在本地对您有用。要提供 java 一个 class 路径,您可以使用 -cp:

ProcessBuilder processBuilder = new ProcessBuilder(Arrays.asList("java", "-cp", "target/classes", "A"));
Scanner scanner = new Scanner(processBuilder.start().getInputStream());
while (scanner.hasNext()) {
    System.out.println(scanner.nextLine());
}