我从使用 Maven 的 Quarkus 开始,似乎找不到解决方案:
我有一个 Quarkus 应用程序,依赖于库 A
和 B
。两者都作为“模块”(不是Maven模块!)导入到我的应用程序的IntelliJ IDEA项目中。
在开发模式下启动 Quarkus 时,它会忽略 A
和 B
的目标/
中的类,而是从 Maven 存储库加载它们。因此,对于 A
或 B
的每次更改,我都必须 mvn 安装
相应的库,所以我的 Quarkus 应用程序使用正确的代码。
来自荆棘尾,这是没有必要的。有没有一种解决方案不需要在每个构建中自动安装 A
和 B
,并且还可以让 HotSwap 适用于这些库?
编辑:根据@CrazyCoder的要求,下面是我的< code>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>test</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<quarkus-plugin.version>1.8.3.Final</quarkus-plugin.version>
<quarkus.platform.version>1.8.3.Final</quarkus.platform.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-universe-bom</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
</dependency>
<dependency>
<groupId>com.example</groupId>
<artifactId>A</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.example</groupId>
<artifactId>B</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
A
和 B
列在 IntelliJ IDEA 的“项目结构...
我最终找到了解决方案。就像往常一样:一旦你知道它,它就微不足道了。
我是Quarkus lambda的初学者,当我正在寻找如何调试Quarkus lambda时,然后每个人都显示了REST APIendpoint,是否有任何方法可以使用lambda处理程序调试Quarkus应用程序? 我知道如何在开发模式下启动应用程序,但我正在努力调用处理程序方法。
当我运行Quarkus应用程序时,它默认只侦听/绑定本地主机。 我如何改变这种行为?
问题内容: 如何在Linux中的系统库上强制使用本地库? 我将可执行文件显式链接到我的project / lib目录中的某些.so文件,例如(../lib/libluajit.so)。 在gdb或使用ldd下运行我的可执行文件表明它仍然使用系统libluajit-5.1.so.2 然后,将LD_LIBRARY_PATH设置到我的project / lib目录并导出它,然后运行我的可执行文件。不知何
我正在尝试构建Quarkus本机应用程序,但在Docker内部构建过程中,我被拒绝访问。我在跟踪这个医生 Dockerfile: 错误: 似乎本机映像命令不会创建app-1.0.0-runner。构建人工制品。txt。 你能帮我一下吗? 顺致敬意,
在quarkus应用程序中给出的驱动程序名称是什么? 如果它不提供本机支持,那么我们如何修复maven项目中添加的依赖关系? 注:官方网站上没有提到与Oracle有关的内容->https://quarkus.io/guides/datasource#multiple-datasources