我为我的managedbean使用JSF viewscope。 我在html视图中调用托管bean。
当页面刷新时,允许新的托管bean,旧的托管bean留在内存中。 如果我刷新并刷新和刷新......我在内存中有大量的托管bean 我尝试运行垃圾收集器,没有任何附加。 托管bean保持到会话到期为止。在会话结束时,通过用户操作或超时,将释放托管bean。
当我停留在同一页面上时,我只有这个问题(刷新浏览器-F5-或没有JSP标记或java代码重定向的重定向链接)。 当我更改页面时,只有一个托管bean被释放(最后一个)。其他人留在记忆中。 它可以使用JSP标记,重定向后释放托管bean。
第二个错误: 有一次我遇到了奇怪的情况: 我有一些托管bean没有在内存中释放,我使用JSP标签重定向(可能3/4次),系统做Predestroy / PostConstruct / Predestroy ... 之后,每个重定向都执行PostConstruct / Predestroy而不是JSP标记或java重定向,Predestroy / PostConstruct / Predestroy用于JSP标记。 在内存中,之后释放未释放的托管bean。 我真的不知道什么是真实的重现这个,但它做了多次。
有人为这个问题找到了一些解决方案吗? 我看到帖子看起来像问题here,我在java.net
上报告了一个错误配置: Java EE 7 / glassfish 4
AViewscope.java:
package com.btm.viewscopetest;
import java.io.IOException;
import java.io.Serializable;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
@ManagedBean
@ViewScoped
public class AViewscope implements Serializable {
@PostConstruct
public void postConstruct() {
System.out.println("PostConstruct");
}
@PreDestroy
public void preDestroy() {
System.out.println("PreDestroy");
}
public AViewscope() {
}
public String getSomething() {
return "Something";
}
public void redirect() throws IOException {
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
externalContext.redirect("apage.xhtml");
}
}
apage.xhtml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<head>
<title>A page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<h:form>
<h:outputText value="Get something: #{aViewscope.something}" />
<br/>
<br/>
<h:commandButton value="Stay on this page with java " actionListener="#{aViewscope.redirect}"/>
<br/>
<h:commandButton value="Stay on this page with direct link" action="apage" />
<br/>
<h:commandButton value="Go to another page" action="anotherPage"/>
<br/>
<h:commandLink value="Stay on this page with direct link h tag " action="apage.xhtml" />
<a href="apage.xhtml">Stay on this page with direct link a tag</a>
</h:form>
</body>
</html>
anotherPage.xhtml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<head>
<title>Another Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<h:form>
<h:commandButton value="Go to another page" action="apage"/>
</h:form>
</body>
</html>
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:1)
我在内存中有大量的托管bean。 我尝试运行垃圾收集器,没有附加
这不是一个错误,它是故意的。如果javax.faces.STATE_SAVING_METHOD
中的server
设置为web.xml
,则JSF会在内存中维护一定数量的bean。客户端现在将始终提交javax.faces.ViewState
(id),允许服务器识别要加载的正确bean。
您可以通过将context-param com.sun.faces.numberOfViewsInSession
设置为符合您需求的数字来限制每个会话存储的观看次数。
但请注意,如果您选择1
,并且用户使用向后导航,则如果已删除该bean,则会遇到ViewExpired
个例外。
减少内存负载的另一个选择是通过将javax.faces.STATE_SAVING_METHOD
设置为client
来处理对客户端的视图存储。然而,这将导致网络流量增加,因为现在客户端不仅需要javax.faces.ViewState
来跟踪 - 而是整个视图本身。我不是百分之百确定客户选项究竟是如何运作的,但对我而言,让客户跟踪&#34; View&#34;而不仅仅是标识符。