Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <groupId>com.assesment</groupId>
  4. <artifactId>VW-Assignment</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>jar</packaging>
  7.  
  8. <name>VW-Assignment</name>
  9. <description></description>
  10.  
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.10.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  16. </parent>
  17.  
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. </properties>
  23.  
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35.  
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>jstl</artifactId>
  39. </dependency>
  40.  
  41. <dependency>
  42. <groupId>org.apache.tomcat.embed</groupId>
  43. <artifactId>tomcat-embed-jasper</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46.  
  47. <dependency>
  48. <groupId>org.eclipse.jdt.core.compiler</groupId>
  49. <artifactId>ecj</artifactId>
  50. <version>4.6.1</version>
  51. <scope>provided</scope>
  52. </dependency>
  53.  
  54. </dependencies>
  55.  
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. </plugins>
  63. </build>
  64.  
  65. org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalStateException: No Java compiler available for configuration options compilerClassName: [null] and compiler: [null]
  66. org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:982)
  67. org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861)
  68. javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
  69. org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
  70. javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
  71. org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
  72. org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
  73. org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  74. org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:108)
  75. org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  76. org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
  77. org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
  78. org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
  79. org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement