SpringBoot으로 웹 출시까지 #2

springboot logo

2. thymeleaf를 이용한 화면 작성

1 mythymeleaf 만들기

https://spring.io/guides/gs/serving-web-content/

https://start.spring.io/

 

project : maven

springboot :  최대한 낮은 버전 / SNAPSHOT X로 선택

artifact, name : mythymeleaf

java: 8

dependencies : Thymeleaf / Spring Web / Spring Boot DevTools

2 greeting.html 만들기

greeting.html 만들기

3 GreetingController 만들기

controller 폴더를 만들어서 GreetingController 클래스 만들기

 

package com.example.mythymeleaf.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class GreetingController {

@GetMapping("/greeting")
public String greeting(@RequestParam(name="name", required=false, defaultValue="World") String name, Model model) {
model.addAttribute("name", name);
return "greeting";
}

}

4 visual Studio code 열어서 html 편집

<!DOCTYPE HTML>
<html xmlns:th=“http://www.thymeleaf.org”>
<head>
    <title>Getting Started: Serving Web Content</title>
    <meta http-equiv=“Content-Type” content=“text/html; charset=UTF-8” />
</head>
<body>
    <p th:text=“‘Hello, ‘ + ${name} + ‘!'”>홍길동</p>
</body>
</html>

5 Live Server 다운로드 및 실행 / Five Server X

6 인텔리제이 mythymeleaf 실행

초록 삼각형 눌러서 실행 시키기

“Web server failed to start. Port 8080 was already in use.” 가 발생하셨다면 인텔리제이를 모두 껐다가 다시 실행시키시면 바로 해결됩니다.

“SpringBoot으로 웹 출시까지 #2”의 231개의 댓글

  1. Honestly the easiest place I have logged into all year. Everything runs smoothly from the moment I open the page on my tablet. The game providers they host deliver top notch graphics and fair odds. I especially enjoy the quick cashout feature that never disappoints. Trust me you will want to visit ezbet69login

  2. I have been playing here for a few months now and the experience keeps getting better. The withdrawal speed is honestly insane and I never worry about hidden fees anymore. The customer support team really listens to what we want and makes sure everything runs smoothly. taka999bet

  3. I use this site every single evening to unwind after work and it never disappoints. The live chat agents are patient and always guide me through my bets step by step. You can really tell they care about keeping things fun and secure for everyone. hoki78login

  4. [9520]Borojeet Official Login | দ্রুত বিকাশ পেমেন্ট ও ক্যাসিনো বোনাস,borojeet অফিসিয়াল লগইন করে উপভোগ করুন সেরা স্লট গেম এবং আকর্ষণীয় বোনাস। দ্রুত বিকাশ পেমেন্ট সুবিধা পেতে আজই অ্যাপটি ডাউনলোড করে যাত্রা শুরু করুন। visit: borojeet

  5. [3244]bg99 Official Login | সেরা অনলাইন ক্যাসিনো বোনাস ও অ্যাপ,bg99 অ্যাপ ডাউনলোড করে উপভোগ করুন সেরা অনলাইন ক্যাসিনো বোনাস। দ্রুত পেমেন্ট গেটওয়ে এবং সহজ স্লট গেমের অভিজ্ঞতার জন্য আজই যোগ দিন। visit: bg99

  6. [1357]888B Casino – Đăng Ký, Đăng Nhập & Tải App 888B Nhận Khuyến Mãi,Trải nghiệm 888B Casino – Sòng bài trực tuyến uy tín hàng đầu. Đăng ký, đăng nhập và tải app 888B ngay hôm nay để nhận khuyến mãi hấp dẫn và ưu đãi độc quyền! visit: 888b

  7. [276]Solarbet – Casino Uy Tín Số 1 | Link Tải App & Đăng Nhập Solarbet,Solarbet là nhà cái casino uy tín số 1 hiện nay, cung cấp trải nghiệm cá cược đẳng cấp với kho game đa dạng. Truy cập ngay link tải app Solarbet chính thức để nhận khuyến mãi hấp dẫn và đăng nhập trải nghiệm thế giới giải trí đỉnh cao, bảo mật và minh bạch. visit: solarbet

댓글 달기

이메일 주소는 공개되지 않습니다.