时间:2021-05-20
1. 默认情况下, 网页存放于static目录下, 默认的"/"指向的是~/resouces/static/index.html文
2. 如果引入了thymeleaf, 则默认指向的地址为~/resouces/templates/index.html
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>代码结构:
3.在引入thymeleaf后, 如果仍需要访问~/static/index.html, 则可以使用重定向
return "redirect:/index.html"代码样例:
import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; @Controller public class HomeCtrl { @GetMapping("/") public String homePage(Model model, HttpServletRequest request, HttpServletResponse response) throws IOException { return "/index"; } @RequestMapping("/static") public String navigatorToStatic() { return "redirect:/static.html"; } <!DOCTYPE html> <html> <head> <script src="webjars/jquery/3.1.1/jquery.min.js"></script> <script src="webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link rel="stylesheet" href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" /> </head> <body> <div class="container"><br/> <div class="alert alert-success"> Hello, <strong>BootStarp & WebJars!</strong> </div> </div> </body> </html>4. HTML中引入webjars时, 需导入类似下面的包
<dependency> <groupId>org.webjars</groupId> <artifactId>bootstrap</artifactId> <version>3.3.7</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>3.1.1</version> </dependency>5. HTML样例
<!DOCTYPE html> <html> <head> <script src="webjars/jquery/3.1.1/jquery.min.js"></script> <script src="webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link rel="stylesheet" href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" /> </head> <body> <div class="container"><br/> <div class="alert alert-success"> Hello, <strong>BootStarp & WebJars!</strong> </div> </div> </body> </html>6. 结果:
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一介绍在笔者支持业务过程中,经常遇到开发咨询replaceinto的使用场景以及注意事项,这里做个总结。从功能原理,性能和注意事项上做个说明。二原理2.1当表中
1.实现效果2.注意事项:我们先用SQLiteStudio建表以及表中字段(SQLiteStudio工具可百度下载);写程序之前对支持库进行配置,勾选Sqlit
概述只要是有学过Java的都一定知道static,也一定能多多少少说出一些作用和注意事项。如果已经对static了如指掌的请点击关闭按钮,看下去也只是浪费您宝贵
淘宝和天猫活动是用户最关心的,每次有活动消息,都会询问具体内容。今天天猫服装风格狂欢返票注意事项有哪些?关于妈妈,天猫服装风尚狂欢回购券(品种券)注意事项如下:
技术栈:Springboot2.x腾讯java版本1.8注意事项:本文内的“**.**”需要自己替换为自己的路径。常量内的“**”需要自己定义自己内容。业务中认