개발일지(21)
-
board-view
insert.html list.html detail.html update.html
2024.04.11 -
board-service
package com.example.board.Service; import com.example.board.DTO.BoardDTO; import com.example.board.Entity.BoardEntity; import com.example.board.Repository.BoardRepository; import lombok.RequiredArgsConstructor; import org.modelmapper.ModelMapper; import org.springframework.stereotype.Service; import java.lang.reflect.Array; import java.util.Arrays; import java.util.List; import java.util.Optiona..
2024.04.11 -
board-controller
package com.example.board.Controller; import com.example.board.DTO.BoardDTO; import com.example.board.Service.BoardSerivce; import lombok.RequiredArgsConstructor; import lombok.extern.java.Log; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping..
2024.04.11