本文介绍了如何在Seam应用程序的启动时启动进程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使用scopetype APPLICATION和使用@Create,@ Beg的方法注释类,但这似乎不起作用。

I tried annotating the class with the scopetype APPLICATION and a method with the @Create, @Beg, but this doesn't seem to work.

我想要什么是在应用程序启动时立即启动一个无限循环。

What I want is to start an infinite loop right when the application starts.

推荐答案

如果你想在初始化后立即执行一个方法,你可以使用下面的注释:

If you want a method to be executed right after initialization you can use the folowing annotation:

@Observer("org.jboss.seam.postInitialization")

这篇关于如何在Seam应用程序的启动时启动进程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 18:34