huruyosi’s blog

プログラミングとかインフラとかのメモです。

spring boot その2 - bootstrapを組み込んで静的なページを表示する

実装したソースは https://github.com/huruyosiathatena/springboot/tree/7841b5ca6c45bbbe0ca326d9eb2e98ea9c79a511 にあります。

TODO 直す

css を考えるのは得意ではないので Bootstrap にたよる

これから先の画面レイアウトやデザインなどで悩むことが無いように Bootstrap Bootstrap · The world's most popular mobile-first and responsive front-end framework. にお世話になります。

バージョンは、これを書いている時点での最新 3.3.5 を使います。

静的なファイルを配置する場所

/staticに置くようです。 src/main/resources配下の/staticに置くようです。

http://docs.spring.io/spring-boot/docs/1.2.5.RELEASE/reference/htmlsingle/#boot-features-spring-mvc-static-content

/public でもいけるので、好みの問題で /publicにします。

src/main/resources配下の/public でもいけるので、好みの問題で src/main/resources/publicにします。

デプロイのために作成したjarファイルにも含まれるように src/main/resources 配下に置く必要があります。

Bootstrapをダウンロード

http://getbootstrap.com/getting-started/ から「Download bootstrap」のリンクをクリックしてzipファイルをダウンロードします。プロジェクトに 「src/main/resources/public」ディレクトリを作成し、そこにダウンロードしたzipファイルを展開します。展開後にディレクトリ名に含まれている「-3.3.5-dist」を削除しておきます。

src/main/resources/public/bootstrap 配下に展開したファイルがあります。

静的ページ作成

Bootstrapのファイルを配置しただけでは 実感がないので starter-template を再現します。

Starter Template for Bootstrap

http://getbootstrap.com/getting-started/からソースのzipファイルをダウンロードして中に含まれているファイルを適宜使います。

index.html と starter-template.css をコピー

bootstrap-3.3.5/docs/examples/starter-template にある2ファイルを src/main/resources/publicにコピーします。

assets

starter-template/index.html が読み込んでいるファイルがあるのでコピーします。

  • docs/assets/js/ie-emulation-modes-warning.js
  • docs/assets/js/ie10-viewport-bug-workaround.js
  • docs/assets/js/ie8-responsive-file-warning.js

/public/index.html を編集

assetsへのリンクをコピーした環境にあわせて変更します。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <meta name="description" content="">
    <meta name="author" content="">

    <title>Starter Template for Bootstrap</title>

    <!-- Bootstrap core CSS -->
    <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">

    <!-- Custom styles for this template -->
    <link href="starter-template.css" rel="stylesheet">

    <!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
    <!--[if lt IE 9]><script src="/assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
    <script src="/assets/js/ie-emulation-modes-warning.js"></script>

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>

  <body>

    <nav class="navbar navbar-inverse navbar-fixed-top">
      <div class="container">
        <div class="navbar-header">
          <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </button>
          <a class="navbar-brand" href="#">Project name</a>
        </div>
        <div id="navbar" class="collapse navbar-collapse">
          <ul class="nav navbar-nav">
            <li class="active"><a href="#">Home</a></li>
            <li><a href="#about">About</a></li>
            <li><a href="#contact">Contact</a></li>
          </ul>
        </div><!--/.nav-collapse -->
      </div>
    </nav>

    <div class="container">

      <div class="starter-template">
        <h1>Bootstrap starter template</h1>
        <p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
      </div>

    </div><!-- /.container -->


    <!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="/bootstrap/js/bootstrap.min.js"></script>
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="/assets/js/ie10-viewport-bug-workaround.js"></script>
  </body>
</html>

確認

http://localhost:8080/index.html にアクセスします。 f:id:huruyosi:20150726012438p:plain

プロジェクトのファイル

  • src/main/resources/public/assets -> index.htmlが参照しているファイルです。Bootstrap のソースコードのzipファイルにある docs/assets から必要なものだけをとりだしています。
  • src/main/resources/public/bootsrap -> bootstrap-3.3.5-dist.zip を展開してTOPディレクトリの名称から「-3.3.5-dist」を削除しました。
  • src/main/resources/public/index.html -> bootstrap-3.3.5.zip の docs/examples/starter-template ディレクトリからコピーして編集しました。
  • src/main/resources/public/starter-template.css -> bootstrap-3.3.5.zip の docs/examples/starter-template ディレクトリからコピーしました。