因此,我只是在IDE中设置了一个Jline3项目,以尝试是否可行。
它只有一个类,我从这里复制过:https://github.com/jline/jline3/blob/master/builtins/src/test/java/org/jline/example/Example.java
Jline3提供了一些我实际上想使用的不错的功能,即使文档很差。问题存在;在Windows上不起作用。它可以在Mac终端,centos甚至Windows(mingw)上的git bash中完美运行。
但是,如果我在Windows终端或cmder中执行我的jar,它会发出警告,并且没有一个完成器可以工作。
WARNING: unable to create a system terminal, creating dumb terminal (enable debug logging for more information)
我的pom看起来像这样:
<?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>jline3Test</groupId>
<artifactId>jline3-test</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<excludes>META_INF/*.SF</excludes>
<excludes>META_INF/*.DSA</excludes>
<excludes>META_INF/*.RSA</excludes>
</excludes>
</filter>
</filters>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>Application</mainClass>
</transformer>
</transformers>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>3.8.0</version>
</dependency>
</dependencies>
问题:
有人知道如何启用调试日志记录并将日志重定向到system.out吗?
有人有相同的问题,并且知道如何解决吗?
预先感谢
答案 0 :(得分:1)
您需要在类路径上使用jna(https://mvnrepository.com/artifact/net.java.dev.jna/jna)或jansi(https://mvnrepository.com/artifact/org.fusesource.jansi/jansi)。
您需要jline-terminal-jansi(https://mvnrepository.com/artifact/org.jline/jline-terminal-jansi)或jline-terminal-jna(https://mvnrepository.com/artifact/org.jline/jline-terminal-jna),将它们与JLine3集成在一起。
因此,您可以选择使用jansi还是jna,但是您必须具有2个根据的库。希望有帮助。
也可以直接在Jline3文档中找到此内容:https://github.com/jline/jline3#jansi-vs-jna
最好, 标记