Hackerss.com

hackerss
hackerss

Posted on

Example of springboot with thymeleaf templates in Java

Example of springboot with thymeleaf templates - Java:

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)