Skip to content
Advertisement

Spring boot cannot resolve view page

I am trying to run a simple web application with using Spring Boot but there is a problem with resolving view. When I go to http://localhost:8080/ it shows;

JavaScript

Is there any missing property or library? Why it cannot resolve my html page?

My application.properties;

JavaScript

enter image description here

JavaScript

Advertisement

Answer

If you use spring boot with some template engine, for example, thymeleaf. You don’t need to set spring.mvc.view.prefix or spring.mvc.view.suffix by default.

You just need to put your template files under the directory src/main/resources/templates/: enter image description here

And your controller will be something like:

JavaScript

If you are NOT using any template engine and just want to serve HTML page as static content, put your HTML files under the directory src/main/resources/static/: enter image description here

And your controller will become:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement