首先,我有一个多模块的 maven 层次结构,如下所示:
├── project (parent pom.xml)
│ ├── service
│ ├── api-library
所以现在来看看问题:
我正在服务模块中编写一个 JAX-RS 端点,该模块使用 API 库中的类。
当我开始夸库时,我收到这样的警告:
13:01:18,784 WARN [io.qua.dep.ste.ReflectiveHierarchyStep] Unable to properly register the hierarchy of the following classes for reflection as they are not in the Jandex index:
- com.example.Fruit
- com.example.Car
Consider adding them to the index either by creating a Jandex index for your dependency or via quarkus.index-dependency properties.
这两个类和位于模块中。com.example.Fruitcom.example.Carapi-library
因此,我认为我需要将它们添加到应用程序属性中的 Jandex 索引依赖项中。
但是,如何将 Jandex 索引依赖性添加到夸库斯中呢?
哆啦的时光机
波斯汪
牧羊人nacy
相关分类