Springboot支持JSP_demo.zip
立即下载
资源介绍:
Springboot支持JSP_demo.zip
package com.example;
/**
* 返回jsp的demo,需要注意:
* 1.打包是war,不是jar,否则还是404,启动脚本在demo目录Start.bat
* 2.注意配置前缀后缀后,注意webapp的目录,是和java同一级别
* 3.注意POM中 有2个依赖的provided需要注释掉,否则会找不到servlet等.....Eclipse不用注释
* 更多教程看我写的笔记:http://waitlove.cn/?p=182
*/
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@SpringBootApplication
public class SpringbootJspApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootJspApplication.class, args);
System.out.println("-----启动成功---");
}
/**
* 测试返回JSP页面
* @return
*/
@RequestMapping(value = "/")
public String returnjsp(){
System.out.println("-------enter--jsp-");
return "index";
}
}