001package io.jstach.opt.spring.example.hello; 002 003import io.jstach.jstache.JStache; 004import io.jstach.opt.spring.webmvc.JStachioModelView; 005 006/** 007 * Model using a resource template that is in src/main/resources/views. The path will be 008 * expanded via the {@link io.jstach.jstache.JStacheConfig} on the projects module. 009 * @author agentgt 010 * @param message The greeting message 011 */ 012@JStache(path = "hello") 013public record HelloModel(String message) implements JStachioModelView { 014 015}