jsf 问题

  刚开始学习jsf框架,第一个demo运行成功也是很曲折的啊。

  最开始的时候用的是2.2的jar,用jsp页面运行程序就出错,运行就出错,后来在网上看到有人用xhtml,于是将程序更改了一下,于是乎程序就运行成功啦。

  index.xhtml的头文件:

<span style="font-size:18px;"><html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:h="http://xmlns.jcp.org/jsf/html"  
      xmlns:f="http://xmlns.jcp.org/jsf/core"></span>

  

  于是又下载了其他版本的jar包,结果还是出错,错误信息:

  HTTP Status 500 - java.lang.RuntimeException: Cannot find FacesContext

  Can't find bundle for base name javax.faces.Messages, locale zh_CN

 

  以上两个错误是两个版本的jar包。

  出错的原因就是访问程序的url少了/faces


<span style="font-size:18px;">错误的访问路径:http://localhost:8080/JSFDemo/index.jsp  
正确的访问路径:http://localhost:8080/JSFDemo/faces/index.jsp</span>


  index.jsp直接放在了WebContent目录下,访问页面时都是项目名+文件名,这也就导致了jsf程序运行出错。

你可能感兴趣的:(jsf 问题)