SpringBootにて、作成したプロジェクトのテンプレートファイルのCSS部分を変更した際、
Eclipseより、赤の実行停止ボタンを押し、再度緑の実行ボタンを押さなければCSSが適用されて、表示されません。
アクセスはブラウザに「http://localhost:8080/signUp」と打ち込み行いました。
こちら、毎回この手順を踏まずに、簡単にデザインの適用を確認する方法はあるでしょうか?
Eclipse内のファイルを選択し、「次で開く」→「webブラウザー」を指定すればEclipse内で開けますが、CSSが適用されず、ブラウザで開いた状態とは違う形となってしまいます。
こちら、解決方法がありましたら、教えて下さい。
実行環境:
Eclipseのバージョン: Version: 2019-12 (4.14.0)
OS: MacOSMojave
プロジェクトの作成は、「Springスタータープロジェクト」にて、作成しました。
追記
HTMLファイルは、「src/main/resources/templates」内に、CSSファイルは、「src/main/resources/static/css」内に作成しました。
プロジェクトの作成は、「Springスタータープロジェクト」より行いました。
以下は、「http://localhost:8080/signUp」と打ち込まれた際に呼び出されるコントローラークラス内のメソッドです。
@GetMapping("/signUp") public String input(Model model){ return "signUp"; }
以下は、テンプレートファイル「signUp.html」です。
<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <title>Spring Boot de Bootstrap</title> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" media="all" th:href="@{/css/signUp.css}"/> <link rel="stylesheet" media="all" th:href="@{/webjars/bootstrap/4.3.1/css/bootstrap.min.css}"/> </head> <body> <div class="container"> <div class="row"> <div class="col-md-5 col-sm-8 top_element"> <div class="bg-primary"> <p class="text-white text-center">SIGN UP</p> </div> <div class="form_content"> <form> <input type="text" name="name" placeholder="Name"> <input type="text" name="email" placeholder="Email"> <input type="text" name="password" placeholder="Password"> <input type="text" name="confirm_password" placeholder="ConfirmPassword"> </form> </div> </div> </div> </div> <script type="text/javascript" th:src="@{/webjars/jquery/3.4.1/jquery.min.js}"></script> <script type="text/javascript" th:src="@{/webjars/bootstrap/4.3.1/js/bootstrap.min.js}"></script> </body> </html>
追記②
Eclipse内で、開いた際に、CSSが適用されていない理由は分かりましたが、最終的に、解決したい問題としましては、毎回、Eclipseより、実行を停止し再度緑の実行ボタンを押さなくともファイルを保存するだけのように簡易な方法で、ブラウザから「http://localhost:8080/signUp」とアクセスした際に、CSSが適用され表示出来ている状態に持っていきたいと考えています。
追記➂
signUp.html内の、<div class="bg-primary">
ここの部分の「bg-primary」を取り外し、保存し再度、ブラウザ(GoogleChrome)にて、更新→スーパーリロード(command + R)→ 更新マーク長押しから、「キャッシュの削除とハード再読み込み」を行なったのですが、変化はありませんでした。しかし、Eclipseで実行停止し再度実行ボタンより実行しブラウザを更新したら、スタイルが外れていました。
※CSSフレームワークはBootStrapを導入しています。
以下はsignUp.css
です
@charset "UTF-8"; .top_element{ margin:0 auto; }
回答2件
あなたの回答
tips
プレビュー