前提・実現したいこと
Springbootの勉強をしています。
thymeleafで簡単なページを表示したいです。
そこで、画像を埋め込もうと思ったのですがうまく表示ができません。
フォルダ構成
該当のソースコード
hello.html
HTML
1<!doctype html> 2<html xmlns:th="http://www.thymeleaf.org"> 3 <head> 4 <title>index</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 <meta charset="UTF-8" /> 7 <link rel="stylesheet" href="webjars/bootstrap/4.4.1/css/bootstrap.min.css" /> 8 <script src="webjars/bootstrap/4.4.1/js/bootstrap.min.js"></script> 9 </head> 10 <body> 11 <div class="container"> 12 <img alt="DokusyoIcon" src="../static/images/icon.png"> 13 </div> 14 <p>index page</p> 15 <p class="text-primary" th:text="${message}"></p> 16 </body> 17</html>
MainController.java
Java
1 2@Controller 3public class MainController { 4 5 @GetMapping("/hello") 6 public String hello(Model model) { 7 model.addAttribute("message", "Hello Thymeleaf!!"); 8 return "hello"; 9 } 10 11}
試したこと
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/05 03:33