Personal notes on Java
For other technologies like HTML, CSS, .NET, PHP, etc. check my other blog

JSF

Expression language doesn't evaluate:
Check web.xml configuration. See if the welcome file is configured correctly, i.e. if
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
</servlet-mapping>
then configure it like this:
<welcome-file>faces/testeCliente.xhtml</welcome-file>
instead of:
<welcome-file>testeCliente.xhtml</welcome-file>

The WEB-INF folder

any resources contained in the WEB-INF folder are not directly accessible from a browser (so pages on this folder cannot be accessed directly from a browser's address bar).

Sem comentários:

Enviar um comentário