nutboot 从入门到反放弃
生成好了项目 index.html 我想改成 index.jsp 然后就走不通了
@At("/")
@Ok("jsp:/index.jsp")
public void index() {}
还是报错
<!--添加jsp支持-->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>9.4.12.v20180830</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>