Thymeleaf

Thymeleaf 3 の "Using Thymeleaf" の日本語訳が公開されました

Using ThymeleafというThymeleafの基本機能が一通り説明してあるドキュメントのThymeleaf 3対応版を @suke_masa と一緒に日本語訳しました。楽しかったー。 Documentation - Thymeleaf 役に立ったら嬉しいです (๑•̀ㅂ•́)و✧ 20180606追記 誤訳を見つけた場合…

Thymeleaf extras nl2br 1.0.1 is released

There's no feature changes, but improved the source code. (Thank you Kazuki Shimizu (@kazuki43zoo) | Twitter !)You can use it by Maven. <dependency> <groupId>com.github.bufferings</groupId> <artifactId>thymeleaf-extras-nl2br</artifactId> <version>1.0.1</version> </dependency> Reference post (for 1.0…

Thymeleaf extras nl2br is released

You can use nl2br:text="${sample}" attribute, which firstly escapes the HTML special characters in the input text, then inserts <br /> tags before newlines. github.com Background I wanted to show a multiple lines input with <br /> tag for the newlines…

Spring Boot + Gradle on Intellij IDEA でアプリケーション実行中にコードの変更反映と Thymeleaf テンプレートの変更反映

これまではずっとEclipse(STS) + Mavenでわいわいコード書いて過ごしてきたんだけど、最近IntelliJ IDEA使い始めたうえに、MavenじゃなくてGradle使い始めて、頭で考えたことがそのまま手に繋がらなくてぐぬぬってなりながらコード書いてる。まぁ、それ自体…

#kanjava Thymeleaf・JShell・Webセキュリティ・実践マイクロサービスなJavaの勉強会でお腹いっぱい!

そんな勉強会に参加してきました。というか、僕もスピーカーとして、Thymeleafについて喋りました!会場は楽天大阪のカフェテリアです!kanjava.connpass.com関ジャバといえば、会場の鍵を開ける人が寝坊してきたりするくらいの、ゆるふわな勉強会なイメージ…

Memo: Changed stats of Thymeleaf 3

467 files changed, 64323 insertions(+) / 478 files, 86972 lines. Here's my memo: thymeleaf-3.0.0.RELEASE 478 files, 86972 lines. $ git ls-files | wc -l 478 $ git ls-files | xargs cat | wc -l 86972 git diff thymeleaf-2.1.4.RELEASE thymeleaf…

Created Thymeleaf 3 Spring Boot for temporary use

This is a temporary library for using Thymeleaf 3.0.0.RELEASE with Spring Boot 1.3.5.RELEASE until official one is released.github.comFor the detail usage, please check the readme. Reference Support Thymeleaf 3 · Issue #4393 · spring-proje…

のっかりThymeleaf 3.0 遊び

d.hatena.ne.jpさすが。というか、僕がThymeleaf使ってみようと思ったのも数年前にしんさんに教えてもらったからだもんな。たしか。 こういうのも 注:遊びです。 // メッセージ StandardMessageResolver resolver = new StandardMessageResolver(); resolve…

5/21 JJUG CCC 2016 Spring で Thymeleaf 3のお話をします!

*14月、5月と発表に全力を突っ込んでてブログが全然書けてないなー。はい。てことで、5/21 JJUG CCC 2016 Spring で Thymeleaf 3のお話をします!(∩´∀`)∩ワーイSessions JJUG CCC 2016 Spring | 日本JavaユーザーグループThymeleafを使ったことがないけどどん…

Using Thymeleaf の日本語訳が公開されたー!!!

Just published! Japanese translation of the "Using Thymeleaf" tutorial, contrib by @bufferings http://t.co/kHCKqQJf8M http://t.co/c2T7xCsPH4— Thymeleaf Project (@thymeleaf) January 8, 2015 ココだよー! Documentation - Thymeleaf: java XML/X…

Using Thymeleaf を翻訳しながら面白いなーと思った部分をぺたぺた

初めてのGithubでのプルリクエスト 自分の勉強9割と、Thymeleafを触ってみたいなと思う人の最初の一歩の敷居が下がるかも1割でやってみました。翻訳しながら面白いなーと思った部分をペタペタ。 WebContext sessionとか便利。 リテラル置換 シンプルに書けて…

ThymeleafでJavaScriptのちょっとした注意点をメモ

こんにちは。しーばです。みんな大好きThymeleafのお話です。 今日は気が向いたのでThymeleaf&JavaScriptね。http://www.thymeleaf.org/doc/html/Using-Thymeleaf.html#script-inlining-javascript-and-dart Natural Templating Thymeleafはナチュラルテンプ…

Thymeleaf の Document 読みながら Memo

Thymeleaf たいむりーふ のメモを書こっと JAX-RS で動かすなら jersey-thymeleaf using ViewProcessor - Mitsuyuki.Shiiba が参考になるかも。公式ドキュメントの http://www.thymeleaf.org/doc/Tutorial%20-%20Using%20Thymeleaf%2020130224.pdf を読みな…

jersey-thymeleaf using ViewProcessor

結局つくったー。 https://github.com/bufferings/jersey-thymeleaf使い方は、Viewableにテンプレート名とモデルを渡すだけです。 文字列だけのバージョンと、POJOを渡すバージョンを試してみました。 @Path("/hello") public class HelloResource { @GET @P…

JAX-RS with Thymeleaf (妄想)

裏紙さんのこのエントリを読んで。まずは Thymeleaf のところを勉強したのだ。 Thymeleaf + JAX-RS + DomaをGlassFishで試してみる - 裏紙合わせて。しんさんのこれも読む。 第45夜 JAX-RSをWebアプリのフロントエンドとして利用する その2 - しんさんの出…