Spring-MVCの散歩道 > Spring Boot の小径 > 第4歩 Spring Boot 匍匐前進 > コンポーネントスキャン
|
<!DOCTYPE html> <!-- xmlnsは、Thymeleafのおまじないです --> <html xmlns:th="http://www.thymeleaf.org"> <head> <title>Hello Spring-Boot</title> <meta charset="UTF-8" /> </head> <body> <table> <tr> <!-- サーブレットから渡ってきたパラメータdiscriptionで内容を書き換えます。 --> <td th:text="${FormHello.discription}">Hello Spring Boot</td> </tr> </table> </body> </html> |