문제

I have a link as follows:

<h:link outcome="/Pages/Public/producthome.jsf?cid=6">cagtegoryName</h:link>

When I want to try pass the category ID by URL, it shows the following error:

WELD:00032 conversation not found for restoring id 1

If I just simply write the link as follows

<h:link outcome="/Pages/Public/producthome.jsf">categoryName</h:link>

then it works fine. What did I wrong in the first link?

도움이 되었습니까?

해결책

It seems the url param name cid is recognized as conversationId. Please try changing the name of the parameter. For an example

<h:link outcome="/Pages/Public/producthome.jsf?catid=6">cagtegoryName</h:link>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top