我正在使用jsf 2.1,prettyfaces 3.3.3和hibernate jpa 3.6.7。我有国家页面,我正在尝试使用commandbutton发送评论。
country.xhtml:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<f:metadata>
<f:viewParam name="country" value="#{countryBean2.selectedCountry}" converter="countryConverter"
required="true" />
</f:metadata>
<h:head>
<title>Country</title>
</h:head>
<h:body>
<h:form id="form">
<h:outputText value="#{countryBean2.selectedCountry.countryName}" />
<br/><br/>
<h:outputText value="Comment:" />
<h:inputText value="#{countryBean2.comment}" />
<br/>
<h:commandButton value="Send" action="#{countryBean2.sendComment}" />
</h:form>
</h:body>
</html>
countryConverter:
public class CountryConverter implements Converter {
public static EntityCountry country = new EntityCountry();
EntityManagerFactory emf = Persistence.createEntityManagerFactory("testPU");
@Override
public EntityCountry getAsObject(FacesContext context, UIComponent component, String value) {
EntityManager em = emf.createEntityManager();
Query query = em.createQuery("SELECT c FROM EntityCountry c WHERE c.countryName = :countryName")
.setParameter("countryName", value);
country = (EntityCountry) query.getSingleResult();
return country;
}
@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
EntityCountry c = (EntityCountry) value;
return c.getCountryName();
}
漂亮-config.xml中:
<pretty-config xmlns="http://ocpsoft.com/prettyfaces/3.3.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ocpsoft.com/prettyfaces/3.3.0
http://ocpsoft.com/xml/ns/prettyfaces/ocpsoft-pretty-faces-3.3.0.xsd">
<url-mapping id="home">
<pattern value="/" />
<view-id value="/faces/index.xhtml" />
</url-mapping>
<url-mapping id="country">
<pattern value="/country/#{country}" />
<view-id value="/faces/country.xhtml" />
</url-mapping>
</pretty-config>
faces-config.xml中的转换器配置:
<converter>
<converter-id>countryConverter</converter-id>
<converter-for-class>test.EntityCountry</converter-for-class>
<converter-class>test.CountryConverter</converter-class>
</converter>
当我首先打开localhost:8080 / test / country / england页面时,一切正常。但是当我尝试通过commandbutton发送注释时,countryConverter的getAsObject方法再次使用错误的字符串参数调用(例如“test.CountryBean@bd9eff”),并且找不到实体。
当我使用默认的丑陋网址(例如localhost:8080 / test / faces / country.xhtml?country = england)并尝试发送评论时,countryConverter的getAsObject方法正在调用true字符串参数,我可以成功发送评论。我认为这是一个漂亮的错误,但我想使用漂亮的网址。
答案 0 :(得分:1)
您是否可以尝试为EntityCountry
类型注册转换器。如果您使用faces-config.xml
进行配置,请使用以下内容:
<converter>
<converter-for-class>com.myapp.EntityCountry</converter-for-class>
<converter-class>com.myapp.CountryConverter</converter-class>
</converter>
来自PrettyFaces文档:
请注意,PrettyFaces会自动使用JSF转换器 注册了要转换的引用bean属性的类型 路径参数。这意味着PrettyFaces支持所有JSF标准 已手动注册的转换器和转换器 用于特定类型的转换器用于类中的元素 faces-config.xml(或@FacesConverter的forClass属性 注解)。
如果这不起作用,请在OcpSoft支持论坛上打开一个主题:
我希望这会有所帮助。 :)
答案 1 :(得分:0)
我有另一个以“country”命名的托管bean,我在pretty-config.xml中使用“country”命名的模式值。
@Named("country")
@SessionScoped
public class CountryBean implements Serializable {
.......
}
当我更改@Named(“country”)值时,它正在成功运行。