Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. pom.xml:
  2.  
  3. <dependency>
  4. <groupId>org.apache.myfaces.core</groupId>
  5. <artifactId>myfaces-impl</artifactId>
  6. <version>2.2.12</version>
  7. </dependency>
  8. <dependency>
  9. <groupId>org.apache.myfaces.core</groupId>
  10. <artifactId>myfaces-api</artifactId>
  11. <version>2.2.12</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.apache.tomcat.embed</groupId>
  15. <artifactId>tomcat-embed-jasper</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.primefaces</groupId>
  19. <artifactId>primefaces</artifactId>
  20. <version>7.0</version>
  21. </dependency>
  22.  
  23. src/main/webapp/WEB-INF/web.xml
  24.  
  25. <?xml version="1.0" encoding="UTF-8"?>
  26. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" version="3.1">
  27. <servlet>
  28. <servlet-name>Faces Servlet</servlet-name>
  29. <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  30. <load-on-startup>1</load-on-startup>
  31. </servlet>
  32. <servlet-mapping>
  33. <servlet-name>Faces Servlet</servlet-name>
  34. <url-pattern>*.jsf</url-pattern>
  35. </servlet-mapping>
  36. <listener>
  37. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  38. </listener>
  39. <listener>
  40. <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
  41. </listener>
  42. </web-app>
  43.  
  44. src/main/webapp/WEB-INF/faces-config.xml
  45.  
  46. <?xml version="1.0" encoding="UTF-8"?>
  47. <faces-config xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  48. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  49. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
  50. http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
  51. version="2.2">
  52. <application>
  53. <el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
  54. </application>
  55. </faces-config>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement