rest-api 예제

    naver search api 사용해서 rest-api 구현하기

    JPA가 없는 IN-MEMORY DB구현 MemoryDbRepositoryInterface package com.example.restaurant.db; import java.util.List; import java.util.Optional; public interface MemoryDbRepositoryIfs { Optional findById(int index); T save(T entity); void deleteById(int index); List findAll(); } MemoryDbRepositoryAbstract package com.example.restaurant.db; import java.util.ArrayList; import java.util.List; import java.ut..