2018年6月9日土曜日

SpringでThymeleafのDialectのレイアウト表示をする。

テンプレートエンジンThymeleafのDialectを使ってのレイアウト表示をする。
画面構成はヘッダー、コンテンツ、フッターの3箇所をレイアウトにする。
ヘッダー、フッターは共通化して、コンテンツがページごとに変わる感じだ。
以前、仕事でしたことあるstrutsのtilesみたいなものだな。
(現在も使われているんかいな?)

さて、まず、build.gradleにthymeleafの設定をする。
compile('org.springframework.boot:spring-boot-starter-web') は削除する。
そして、代りに compile('org.springframework.boot:spring-boot-starter-thymeleaf') を設定する。
次のサイトを参考にしたけれど、`spring-boot-starter-web` に依存するため、`spring-boot-starter-web` を明記する必要はないみたいだ。

Spring Boot における Thymeleaf サンプルコード

それと、thymeleafとdialectのバージョンを設定する。
ext['thymeleaf.version'] と ext['thymeleaf-layout-dialect.version'] を設定する。
それぞれのバージョンは次のサイトを参考にすればいいみたいだ。

https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring4
https://mvnrepository.com/artifact/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect

このバージョンについての情報は次のサイトを参考にした。

Spring Boot で Thymeleaf 使い方メモ

そして、build.gradleは次のとおりになる。

  1. buildscript {
  2.     ext {
  3.         springBootVersion = '1.5.13.BUILD-SNAPSHOT'
  4.     }
  5.     repositories {
  6.         mavenCentral()
  7.         maven { url "https://repo.spring.io/snapshot" }
  8.         maven { url "https://repo.spring.io/milestone" }
  9.     }
  10.     dependencies {
  11.         classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  12.     }
  13. }
  14.  
  15. apply plugin: 'java'
  16. apply plugin: 'eclipse'
  17. apply plugin: 'org.springframework.boot'
  18.  
  19. group = 'com.example'
  20. version = '0.0.1-SNAPSHOT'
  21. sourceCompatibility = 1.8
  22.  
  23. repositories {
  24.     mavenCentral()
  25.     maven { url "https://repo.spring.io/snapshot" }
  26.     maven { url "https://repo.spring.io/milestone" }
  27. }
  28.  
  29. dependencies {
  30.     compile('org.springframework.boot:spring-boot-starter-thymeleaf') {
  31.         exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
  32.     }
  33.     compile('org.springframework.boot:spring-boot-starter-log4j2')
  34.     testCompile('org.springframework.boot:spring-boot-starter-test')
  35. }
  36.  
  37. ext['thymeleaf.version'] = '3.0.9.RELEASE'
  38. ext['thymeleaf-layout-dialect.version'] = '2.3.0'

コントローラプログラムの HogeController.java は次のとおり
以前のSpringでlog4j2(Gradleでプロジェクト作成)は、"Hello World!" の文字列を表示していたけれど、今回は表示するテンプレート "index" を設定している。

  1. package com.example.hoge;
  2.  
  3. import org.slf4j.Logger;
  4. import org.slf4j.LoggerFactory;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RestController;
  7. import org.springframework.web.servlet.ModelAndView;
  8.  
  9. @RestController
  10. public class HogeController {
  11.  
  12.     private static final Logger logger = LoggerFactory.getLogger(HogeController.class);
  13.  
  14.     @RequestMapping("/")
  15.     public ModelAndView index(ModelAndView mav) {
  16.         logger.info("#index START");
  17.         mav.setViewName("index");
  18.         return mav;
  19.     }
  20. }


次にDialectのレイアウト全体のテンプレート "layout.html" を設定する。
ソースは次のとおり。

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.       xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4.       xmlns:th="http://www.thymeleaf.org">
  5. <head>
  6.   <title layout:title-pattern="$LAYOUT_TITLE - $CONTENT_TITLE">My website</title>
  7.   <meta charset="UTF-8" />
  8. </head>
  9. <body>
  10. <header layout:replace="~{layout/header::header}"></header>
  11. <article layout:fragment="content" style="background-color: lightpink;"></article>
  12. <footer layout:replace="~{layout/footer::footer}"></footer>
  13. </body>
  14. </html>


次が "layout.html" でヘッダ部分を取り込む箇所 "<header layout:replace="~{layout/header::header}"></header>" で取り込まれる "header.html" を設定する。
ソースは次のとおり

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.       xmlns:th="http://www.thymeleaf.org"
  4.       xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  5. <body>
  6. <header id="global-header" layout:fragment="header" style="background-color: beige;">
  7.     <p class="text-center">This is header</p>
  8. </header>
  9. </body>
  10. </html>

次が "layout.html" でフッタ部分を取り込む箇所 "<footer layout:replace="~{layout/footer::footer}"></footer>" で取り込まれる "footer.html" を設定する。
ソースは次のとおり

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.       xmlns:th="http://www.thymeleaf.org"
  4.       xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
  5. <body>
  6. <footer id="global-footer" layout:fragment="footer" style="background-color: aqua;">
  7.     <p class="text-center">This is footer</p>
  8. </footer>
  9. </body>
  10. </html>

レイアウトの定義は以上で、次に上記コントローラプログラムで設定した表示するテンプレート "index" のテンプレート "index.html" を設定する。
ソースは次のとおり

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.       xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4.       layout:decorate="~{layout/layout}">
  5. <head>
  6.   <title>INDEX PAGE</title>
  7. </head>
  8. <body>
  9. <div layout:fragment="content" class="text-center">
  10. <p style="height: 150px;">This is index page.</p>
  11. </div>
  12. </body>
  13. </html>

これでThymelaefのDialectのレイアウトでの画面表示するプログラムは用意できた。
動かしてみる。
画面表示は次のようになる。


本画面のHTMLは次のように生成されている。
これで終わり。

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.   <title>My website - INDEX PAGE</title>
  5.   <meta charset="UTF-8" />
  6. </head>
  7. <body>
  8. <header id="global-header" style="background-color: beige;">
  9.     <p class="text-center">This is header</p>
  10. </header>
  11. <div style="background-color: lightpink;" class="text-center">
  12. <p style="height: 150px;">This is index page.</p>
  13. </div>
  14. <footer id="global-footer" style="background-color: aqua;">
  15.     <p class="text-center">This is footer</p>
  16. </footer>
  17. </body>
  18. </html>

2018年6月3日日曜日

ジアミン

昨日、美容室でカットとカラー(白髪染め)をしてもらった。

その時に美容師から教えてもらったのだけど、白髪染めの薬に含まれているジアミンって成分が有害らしくて、白髪染め100回を目処にジアミンアレルギーが発生するらしい。
ジアミンアレルギーは頭皮が腫れたり、髪の毛が細くなったり曲がったりするのが加速するらしい。
なので、ジアミン対策のためにヘッドスパというのをしてもらった。
良くわからないけど、ヘッドスパをすることによって、ジアミンを取り除くことができるのかな?

あと、洗髪の後にトリートメントしてますか?みたいなお話があって、「してないです。」と言うと、トリートメントの使用を勧められたので、トリートメントの購入した。
その場でスマートフォンを使いAmazonでトリートメントを検索してみたけど、美容室で購入した方が安いので、その場で購入。
Amazonだと約3600円、美容室だと2600円。


ちなみに、トリートメントにポリッシュオイルというのとシアオイルというのがあるけれど、シアオイルの方が髪にいいんだって。
まぁ、価格はシアオイルの方が高い。
ボクが購入したのはシアオイル。
ちなみにポリッシュオイルはつけると脂ぎった感じになる。
シアオイルはサラサラな感じになる。

トリートメントの使い方は、洗髪後の髪を乾かす前に、トリートメントをワンプッシュして出てくる液体を髪に馴染ませればOKとのこと。
このシアオイルめちゃいい匂いがするんだけど。
そんで、髪がサラサラに。





それと、シャンプーもいいものをって勧められたけど、「それは検討しときます。」ってことにした。
今のところ困ることはないしね。
でも、頭皮とか髪質を考えると美容師オススメのシャンプーにした方がいいだろうね。
今度、美容室に行ったらオススメのシャンプーの効能とか聞いてみようと思う。

1WAY閉店してた。

会社の人から聞いてびっくりしたんだけど、1WAYが4月末で閉店してた。

1WAY

1WAYのホームページを見ると閉店について書かれてある。
また、行こうかと思っていたのだけど残念。
アボガドチーズバーガー美味しかったです。