Tagged Questions

Pretty Faces PrettyFaces is an OpenSource Filter-based Servlets extension with enhanced support for JavaServer Faces – JSF 1.1, 1.2 and 2.0 – enabling creation of bookmark-able, pretty URLs. PrettyFaces solves the “RESTful URL” problem elegantly, including features such as: page-load actions, ...

learn more… | top users | synonyms

4
votes
2answers
172 views

documentation - is it a template?

I see that many sites are using the same template of documentation: PrettyFaces Hibernate and more. Is it a template that I can download somewhere? It's so clear!
3
votes
2answers
46 views

How to process prettyfaces 'query-param' in backing bean?

I have a list of users(dataTable with a link on userId that points to /user/view/{userId}). On clicking this userId link, the browser is redirected to the 'view' page as expected. I have a page that ...
2
votes
1answer
262 views

irritating warning in glassfish log

I am trying to create an application where I combine jsf2, prettyfaces, jpa and glassfish 3.1. I had some trouble gettings prettyfilter to load properly, which was fixed by following the tutorial ...
2
votes
3answers
2k views

Spring - Rewrite one URL to another

I have a Spring 2.5 application that contains a Flash banner. I don't have the source for the Flash component but it has links hardcoded to certain pages that end in .html I want to be able to ...
1
vote
1answer
48 views

Should I use f:event or action element in PrettyFaces?

At the moment I am using the following code: public void init() { question = questionBean.findQuestion(questionParamId); } Which is invoked by this: <f:metadata> <f:viewParam ...
1
vote
1answer
100 views

How does URL-rewriting work?

I have read many posts and blogs about rewriting and I know there is a difference between internal server rewriting and redirecting. I am interested in knowing how the internal rewriting works, and ...
1
vote
1answer
60 views

Do I need to make a custom regex pattern for this in PrettyFaces

Do I need to make a custom regex pattern to match URLs when I have the following mapping (example): <url-mapping id="approvedQuestions"> ...
1
vote
1answer
28 views

Gradle build profiles for i18n and PrettyFaces

Is it possible to define different profiles in gradle? I've written a WebApplication and i want to deploy it with the production settings. Furthermore my app is using PrettyFaces. Since i'm using ...
1
vote
1answer
124 views

Duplicated mapping id with PrettyFaces

i am using PrettyFaces 3.3.0 with Spring Security 3 i have two beans UserBean which is mapped to serve to pages (users,add) and LoginBean to serve the login page my mappings is as follows: 1- ...
1
vote
1answer
113 views

Getting the original request URI with PrettyFaces

I am using PrettyFaces in my JSF application. The site requires authentication to access some pages, so I'm using a listener (prerender view) that checks whether the user is logged in. So, if the user ...
1
vote
3answers
566 views

JSF and PrettyFaces - How to restrict direct xhtml requests

I'm new to JSF and PrettyFaces. So by now i found out that i can configure PrettyFaces to "forward" the request to the right .xhtml file. The problem is, that i (or a user, in case he knows my folder ...
1
vote
1answer
124 views

remove application name from URL

my site uses JSF and the url appears to be, http://mysitename.com/wompower6/faces/home.xhtml I am using prettyfaces, so if I use the following in pretty-config.xml, i can change the name to ...
1
vote
2answers
745 views

javax.faces.application.ViewExpiredException: View could not be restored

i've created this webpage using jsf,prettyfaces and hibernate i looked around and most people says that this error is because of cache most of them found this error after login,logout and try to login ...
1
vote
2answers
303 views

How to reproduce specific Friendly URL?

we are trying to refactor an JSP/XSLT application to JSF. We use a CMS for content management. Technologies : JSF 2.0 using Mojarra, PrimeFaces 2.2.1 and Tomcat 6.29 The organisation of the data ...
0
votes
1answer
34 views

Navigation using Prettyfaces with dynamic id

I have a very simple page that simply prompts the user for a name and will then create a resource with that name. When the user hits the submit button, I would like to directly navigate him to the ...
0
votes
1answer
36 views

PrettyFaces and JSF ui:include causing action method to be called twice

I have an xhtml view being rendered via a prettyfaces request. I am running into a problem where the Action mapping from prettyfaces is being executed twice, but only when I have a ui:include tag. ...
0
votes
1answer
59 views

How to use Prettyfaces with converter?

i'm using prettyfaces 3.3.2 and JSF 2.2.1. i want to convert pretty url string to entity object and use the object in the web page. pretty-config.xml: <url-mapping id="country"> <pattern ...
0
votes
1answer
107 views

t:inputFileUpload doesn't work when it is called from mapped(pretty faces) .xhtml page

I'm using Tomahawk library for the file upload. However, the backing bean's method is never called when I click on h:commandButton to submit the form. Bellow is the code sequence that should do the ...
0
votes
1answer
27 views

Inherit from a parent URL mapping

I am trying to inherit a mapping, according to the PrettyFaces reference guide it should work like this: http://ocpsoft.com/docs/prettyfaces/snapshot/en-US/html_single/#config.mapping.parents I tried ...
0
votes
1answer
101 views

Annoying “Resource not found” warnings on my web.xml with Eclipse Indigo

I have two custom url mappings for error pages (500 and 404) using PrettyFaces. On my web.xml I have these two error page rules: <error-page> <error-code>404</error-code> ...
0
votes
1answer
30 views

Ignore case in prettyfaces pattern

if you defined a url mapping as follows: @URLMapping(id = "myPage", pattern = "/myPage", viewId = "/faces/pages/myPage.xhtml") if you tried to enter the url as: http:localhost:8080/myPage this ...
0
votes
1answer
176 views

Get current page name with JSF/PrettyFaces

i am using PrettyFaces as url rewrite library as follows: @URLMappings(mappings = { @URLMapping(id = "page1", pattern = "/page1", viewId = "/faces/pages/page1.xhtml"), @URLMapping(id ...
0
votes
2answers
153 views

Cannot make URL mapping using Pretty Faces 3.3.2, JSF 2.0, JBoss 6.1.0 final

I'm experiencing problem with Pretty Faces URL mappings. I have one managed bean with the following mappings: @ManagedBean @RequestScoped @URLMapping(id = "search", pattern = "/search/", viewId = ...
0
votes
1answer
124 views

Redirect/Forward from a servlet with PrettyFaces

i am using PrettyFaces 3.3.0 and i want to make custom redirect and forward from a servlet i found the following code on their documentation: public class CustomRedirector { public void ...
0
votes
1answer
133 views

Prettyfaces unable to find matching navigation case

I keep getting this error: Unable to find matching navigation case with from-view-id '/index.xhtml' for action '/faces/index.xhtml' with outcome 'finish_setup' The program works, redirecting my ...
0
votes
1answer
121 views

Using PrettyFaces 3.3.1-SNAPSHOT

i downloaded the 3.3.1-SNAPSHOT version to make generic url regarding this post: Pretty Faces: Generic URL mapping my configuration is as follows: my web.xml: <?xml version="1.0" ...
0
votes
2answers
250 views

Pretty Faces: Generic URL mapping

Using Pretty Faces 3, I have some mappings like these: <url-mapping id="search"> <pattern value="/search" /> <view-id value="/views/search.xhtml" /> </url-mapping> ...
0
votes
1answer
100 views

JSF2 f:ajax ajax requests without query string?

Right now on each f:ajax (or a4j:ajax) request I'm making, the POST includes the query string which I don't want. Is there a way to not have it pass them on? I don't understand why it does this ...
0
votes
1answer
140 views

Prettyfaces how to rewrite two different view-id with one pattern

I have two different view-id /faces/rcg/index.xhtml and /faces/MasterRiskManager/index.xhtml Is it possible to rewrite them both with one pattern /inex.html?
0
votes
1answer
101 views

JSF - Setting a property while following a link

I'm using prettyfaces for handling URL paths. What I want to do is set a language property upon following a link (to choose language). Something like this: <h:link outcome="#{bean.currentPath}" ...
0
votes
1answer
524 views

Seam and Prettyfaces

i'm using prettyfaces 3.1.0 with JSF1.2 and Seam 2.2.0. I have the following pretty-config.xml: <url-mapping id="accountInfo"> <pattern value="/account/#{accountId}/" /> ...
0
votes
1answer
496 views

Pretty Faces Mapping problem

i using PrettyFaces for Pretty URL but i have first problem with PrettyFaces: my mapping in pretty-config.xml <url-mapping id="home"> <pattern value="/" /> ...
0
votes
1answer
499 views

How to create dynamic view in one page

i have one page index.jsf, i was use ui:include for include header and footer,i want to dynamic view in content, it mean when user click on register link just content change header and footer didn't ...
0
votes
2answers
132 views

Phases skipped when using PrettyFaces (JSF)

When using PrettyFaces to map a page containing a form, all phases after Restore View are skipped and the response is rendered. Thus the form is not submitted and the model is not updated.
0
votes
4answers
490 views

Prettyfaces with Seam beans

Trying to solve this problem for two days without any luck. The problem occur when i try to define a url-mapping in pretty-config.xml that relay on a bean created with Seam <url-mapping ...