JSF在请求外接收FacesContext

时间:2012-07-23 13:10:22

标签: jsf facescontext

据我所知,FacesContext仅在请求范围内可用。我创建了一个尝试接收FacesContext实例的线程,但它返回null。

我的观点是每10秒更新一些应用程序范围的bean。

线程的运行方法:

@Override
public void run()
{
    while (true)
    {
        try
        {
            TimeView timeView = (TimeView)FacesContext.getCurrentInstance().
                    getExternalContext().getApplicationMap().get("timeView"); 
            // FacesContext.getCurrentInstalce() returns null

            timeView.update();
            Thread.sleep(10000);
        }
        catch (InterruptedException ex)
        {
            System.out.println(ex);
        }
    }
}

TimeView的标题(我跳过了getter / setters):

@ManagedBean(eager=true, name="timeView")
@ApplicationScoped
public class TimeView implements Serializable
{
    private int hour;
    private int minutes;
    private int seconds;

    public TimeView()
    {
        update();
    }

    public void update()
    {
        Date date = new Date();
        setHour(date.getHours());
        setMinutes(date.getMinutes());
        setSeconds(date.getSeconds());
    }

faces-config.xml中:

<?xml version="1.0" encoding="UTF-8"?>
<faces-config
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
    version="2.0">

    <managed-bean>
        <managed-bean-name>timeView</managed-bean-name>
        <managed-bean-class>foogame.viewBeans.TimeView</managed-bean-class>
        <managed-bean-scope>application</managed-bean-scope>
    </managed-bean>
</faces-config>

那么,有没有办法在这个帖子中接收对我的应用程序范围bean的引用?

1 个答案:

答案 0 :(得分:1)

由于现在有方法在Servlet环境之外访问/构造FacesContext,我建议您将应用程序作用域对象传递给工作线程的构造函数(执行批处理作业的线程)。更新线程中的引用将导致更新应用程序作用域引用,因为它们都指向同一实例。

如果你有EJB3环境,你可以使用EJB timer + @Singleton bean而不需要处理线程和范围。