mirror of
https://github.com/JeffLi1993/springboot-learning-example.git
synced 2026-03-14 06:03:52 +08:00
Spring Boot 入门、Spring Boot 配置、Web 开发、模板引擎、数据存储、数据缓存 案例更新
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package demo.springboot.domain;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
/**
|
||||
* Book 数据持久层操作接口
|
||||
*
|
||||
* Created by bysocket on 09/10/2017.
|
||||
*/
|
||||
public interface BookRepository extends JpaRepository<Book, Long> {
|
||||
}
|
||||
Reference in New Issue
Block a user