8

我不确定我在做什么是错的,或者我只是在某处错过了注释或配置项。情况如下:

我有一个带有会话范围 bean 的 JSF 应用程序,名为SessionData. ApplicationData这个 bean在创建时注入了一个应用程序范围的 bean 引用(类型为)。首次创建会话时,这可以正常工作。依赖注入是使用文件中<managed-bean>的元素完成的faces-config.xml,如下所示:

<managed-bean>
    <managed-bean-name>sessionData</managed-bean-name>
    <managed-bean-class>my.package.SessionData</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    <managed-property>
        <property-name>applicationData</property-name>
        <property-class>my.package.ApplicationData</property-class>
        <value>#{applicationData}</value>
    </managed-property>
</managed-bean>
<managed-bean>
    <managed-bean-name>applicationData</managed-bean-name>
    <managed-bean-class>my.package.ApplicationData</managed-bean-class>
    <managed-bean-scope>application</managed-bean-scope>
</managed-bean>

因为让我的对象在序列化时SessionData包含该对象是没有意义的,所以我在我的对象中将引用标记为瞬态: ApplicationDataApplicationDataSessionData

transient private ApplicationData applicationData;

一切都很好,直到 Web 应用程序停止(在我的 Tomcat 6.x 容器中)并且会话被序列化。ApplicationData当我重新启动应用程序并反序列化会话时,JSF 不会重新注入我的引用。我知道反序列化应该使瞬态字段没有值。有没有办法向 JSF 发出信号,表明此会话范围的对象需要在反序列化后再次设置其依赖项?

我使用 MyFaces JSF 1.2 和 Tomcat 6.0.26 作为我的 Web 应用程序容器。

4

2 回答 2

6

尽管 Bozho 提供的解决方案可以工作,但我不想将代理对象引入当前未使用它们的应用程序中。我的解决方案不太理想,但它完成了工作。

我将瞬态字段留在原处:

transient private ApplicationData _applicationData;

我还保留了 setter,以便 JSF 可以SessionData在第一次创建对象时初始设置引用:

public void setApplicationData(ApplicationData applicationData) {
    _applicationData = applicationData;
}

我所做的更改是在 getter 方法中。对象中的方法SessionData现在需要停止直接访问该_applicationData字段,而是通过 getter 获取引用。getter 将首先检查空引用。如果为 null,则通过FacesContext. 这里的限制FacesContext是 仅在请求的生命周期内可用。

/**
 * Get a reference to the ApplicationData object
 * @return ApplicationData
 * @throws IllegalStateException May be thrown if this method is called
 *  outside of a request and the ApplicationData object needs to be
 *  obtained via the FacesContext
 */
private ApplicationData getApplicationData() {
    if (_applicationData == null) {
        _applicationData = JSFUtilities.getManagedBean(
            "applicationData",  // name of managed bean
            ApplicationData.class);
        if (_applicationData == null) {
            throw new IllegalStateException(
                "Cannot get reference to ApplicationData object");
        }
    }
    return _applicationData;
}

如果有人关心,这是我的getManagedBean()方法的代码:

/**
 * <p>Retrieve a JSF managed bean instance by name.  If the bean has
 * never been accessed before then it will likely be instantiated by
 * the JSF framework during the execution of this method.</p>
 * 
 * @param managedBeanKey String containing the name of the managed bean
 * @param clazz Class object that corresponds to the managed bean type
 * @return T
 * @throws IllegalArgumentException Thrown when the supplied key does
 *  not resolve to any managed bean or when a managed bean is found but
 *  the object is not of type T
 */
public static <T> T getManagedBean(String managedBeanKey, Class<T> clazz)
        throws IllegalArgumentException {
    Validate.notNull(managedBeanKey);
    Validate.isTrue(!managedBeanKey.isEmpty());
    Validate.notNull(clazz);
    FacesContext facesContext = FacesContext.getCurrentInstance();
    if (facesContext == null) {
        return null;
    }
    Validate.notNull(facesContext.getApplication());
    ELResolver resolver = facesContext.getApplication().getELResolver();
    Validate.notNull(resolver);
    ELContext elContext = facesContext.getELContext();
    Validate.notNull(elContext);
    Object managedBean = resolver.getValue(
        elContext, null, managedBeanKey);
    if (!elContext.isPropertyResolved()) {
        throw new IllegalArgumentException(
            "No managed bean found for key: " + managedBeanKey);
    }
    if (managedBean == null) {
        return null;
    } else {
        if (clazz.isInstance(managedBean)) {
            return clazz.cast(managedBean);
        } else {
            throw new IllegalArgumentException(
                "Managed bean is not of type [" + clazz.getName() +
                "] | Actual type is: [" + managedBean.getClass().getName()+
                "]");
        }
    }
}

并且不要接听我的验证电话。开发完成后我会把它们拿出来!:)

于 2010-09-23T15:45:28.923 回答
1

你可以添加一个方法:

private void readObject(java.io.ObjectInputStream in)
 throws IOException, ClassNotFoundException {
  in.defaultReadObject();
  applicationData = initializeApplicationData();
}

并且initializeApplicationData您可以使用动态代理对象。使用 CGLIB 或 javassist 创建一个代理,在每个方法调用之前设置一个内部字段 - real ApplicationData。如果是null,则获取当前FacesContext(此时可访问)并通过以下方式从那里获取托管 bean:

FacesContext facesContext = FacesContext.getCurrentInstance();
originalApplicationData = (ApplicationData)facesContext.getApplication()
  .createValueBinding("#{applicationData}").getValue(facesContext);

并委托给它的方法。

这是一个丑陋的解决方法,但我认为它会起作用。

于 2010-09-23T12:35:10.750 回答