如何在spring启动应用程序中提供静态html?

时间:2017-11-30 18:14:57

标签: java spring spring-boot tomcat7

我是春季启动的新手。我想从其中一种方法静态提供html文件。我尝试了多个例子但是我被困了 这是我的java文件

package project;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.*;
import org.springframework.stereotype.Controller;

@Controller
public class Example1{

    @RequestMapping("/getHtml")
    public String serve(){
        System.out.println("Served");
        return "eg1.html";
    }
}

我已将此应用程序部署在tomcat上作为war文件。我已将eg1.html放在src \ main \ resources \

编辑: 我将此视为错误

https://i.stack.imgur.com/14SOf.jpg

0 个答案:

没有答案