전체 글(37)
-
movie-controller
package com.example.totalproject.Controller; import com.example.totalproject.DTO.MovieDTO; import com.example.totalproject.Service.MovieService; import com.example.totalproject.Util.PaginationUtil; import lombok.RequiredArgsConstructor; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.web.PageableDefault; import org.spr..
2024.04.11 -
member-controller
package com.example.totalproject.Controller; import com.example.totalproject.Constant.RoleType; import com.example.totalproject.DTO.MemberDTO; import com.example.totalproject.Service.MemberService; import com.example.totalproject.Util.PaginationUtil; import lombok.RequiredArgsConstructor; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.spr..
2024.04.11 -
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 -
[Spring Boot][오류해결] Parameter 0 of constructor in ~~ required a bean of type ~~ that could not be found.
이제 시작인데... ERROR ??????????????? *************************** APPLICATION FAILED TO START *************************** Description: Parameter 0 of constructor in com.bigbell.accountbook.rest.AccountRestController required a bean of type 'com.bigbell.accountbook.service.TodayAccountService' that could not be found. Action: Consider defining a bean of type 'com.bigbell.accountbook.service.TodayAccou..
2024.04.08