Scroll indicator done

STUDY/Spring (1)

  1. [Spring] Spring CRUD, 학생 목록 저장하고 출력하기 2023.06.08

    templates / create.html Create Student Name: Email: Back templates / home.html Student List No Student Here ... 번호 : [[${student.id}]] 이름 : [[${student.name}]] 이메일 : [[${student.email}]] Create model / StudentDto.java package com.example.crud.model; public class StudentDto { private Long id; private String name; private String email; public StudentDto() { } public StudentDto(Long id, String name..