Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2015
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. janv. 22, 2015 2:38:50 PM org.apache.catalina.core.ApplicationContext log
  2. INFOS: No Spring WebApplicationInitializer types detected on classpath
  3. janv. 22, 2015 2:38:51 PM org.apache.catalina.core.ApplicationContext log
  4. INFOS: Initializing Spring root WebApplicationContext
  5. janv. 22, 2015 2:38:55 PM org.apache.catalina.core.ApplicationContext log
  6. INFOS: Initializing Spring FrameworkServlet 'idp'
  7. janv. 22, 2015 2:38:56 PM org.apache.catalina.core.StandardContext loadOnStartup
  8. GRAVE: La servlet /idp a généré une exception "load()"
  9. org.apache.jasper.JasperException: Impossible de compiler la classe pour la JSP:
  10.  
  11. Une erreur s'est produite à la ligne: 8 dans le fichier jsp: /WEB-INF/jsp/metadata.jsp
  12. Syntax error on token "(", { expected
  13. 5:  WebApplicationContextUtils.getRequiredWebApplicationContext(request.getServletContext());
  14. 6: final String path = springContext.getEnvironment().getProperty("idp.home") + "/metadata/idp-metadata.xml";
  15. 7:
  16. 8: try (final java.io.FileInputStream in = new java.io.FileInputStream(path)) {
  17. 9:  int i;
  18. 10:     while ((i = in.read()) != -1) {
  19. 11:         out.write(i);
  20.  
  21.  
  22. Une erreur s'est produite à la ligne: 8 dans le fichier jsp: /WEB-INF/jsp/metadata.jsp
  23. Syntax error on token ")", ; expected
  24. 5:  WebApplicationContextUtils.getRequiredWebApplicationContext(request.getServletContext());
  25. 6: final String path = springContext.getEnvironment().getProperty("idp.home") + "/metadata/idp-metadata.xml";
  26. 7:
  27. 8: try (final java.io.FileInputStream in = new java.io.FileInputStream(path)) {
  28. 9:  int i;
  29. 10:     while ((i = in.read()) != -1) {
  30. 11:         out.write(i);
  31.  
  32.  
  33. Une erreur s'est produite à la ligne: 13 dans le fichier jsp: /WEB-INF/jsp/metadata.jsp
  34. Syntax error, insert "}" to complete Block
  35. 10:     while ((i = in.read()) != -1) {
  36. 11:         out.write(i);
  37. 12:     }
  38. 13: } catch (final java.io.IOException e) {
  39. 14:     out.println(e.getMessage());
  40. 15:     return;
  41. 16: }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement