在我们的设置中,我们执行一些静态初始化构建步骤,包括将所有资源路径添加到对象的列表中。我们为此使用记录器,因为在静态初始化阶段无法访问对象。在jvm模式下,我们看到列表确实包含所有资源路径。但是,在本机模式中并非如此。列表仍然是空的,即使构建日志显示我们对资源进行了迭代并将它们添加到列表中。
这就是我们的设置:
第一:在运行时可访问的文件,它包含所有资源路径。
@ApplicationScoped
public class ServiceResourcesList {
private List<String> resources;
public ServiceResourcesList() {
resources = new ArrayList<>();
}
public void addResource(String resource) {
this.resources.add(resource);
}
public List<String> getResources() {
return resources;
}
public List<String> getResources(Predicate<String> filter) {
return resources.stream().filter(filter).collect(Collectors.toList());
}
}
记录器返回beancontainerlistener:
@Recorder
public class ServiceResourcesListRecorder {
public BeanContainerListener addResourceToList(String resource) {
return beanContainer -> {
ServiceResourcesList producer = beanContainer.instance(ServiceResourcesList.class);
producer.addResource(resource);
};
}
}
最后是(简化的)构建步骤。请注意,我们使用的buildproducer应该确保在应用recorder方法之前已经注册了对象。
@BuildStep
@Record(STATIC_INIT)
void createResourceList(final BuildProducer<BeanContainerListenerBuildItem> containerListenerProducer, ServiceResourcesListRecorder recorder) {
// Some code to get the resource paths, but this could be anything
// ...
for (String resourcePath: resourcePaths) {
LOGGER.info(resourcePath + " added to recorder");
containerListenerProducer.produce(new BeanContainerListenerBuildItem(recorder.addResourceToList(resourcePath)));
}
}
我做错什么了吗?录像机不应该用于本机可执行文件吗?我应该在某个地方添加引用寄存器吗?
谢谢
1条答案
按热度按时间xfb7svmp1#
我们通过使用运行时init和静态方法来解决这个问题。