Home > Software engineering >  Cannot create a .jsp file in Spring inspite if having all dependancies?
Cannot create a .jsp file in Spring inspite if having all dependancies?

Time:10-09

Been trying this since a while now, already have the Spring web, H2 and JDBC dependencies.

CodePudding user response:

If you are using ST4 you need to install "Eclipse Enterprise Java and Web Developer Tools" from the Eclipse Marketplace.

CodePudding user response:

To write jsp files in spring we need add jsp or jstl dependency in pom.xml Refer: https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api

add appropriate dependency version and try running the application.

  • Related