solution2.BlogPostRepository.java Source code

Java tutorial

Introduction

Here is the source code for solution2.BlogPostRepository.java

Source

/*
 * $Id$
 * Copyright (c) Codecenter Oy. All rights reserved.
 *
 * This software is the proprietary information of Codecenter Oy.
 * Use is subject to license terms.
 */
package solution2;

import blog.model.BlogPost;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;

public interface BlogPostRepository extends JpaRepository<BlogPost, Integer>, JpaSpecificationExecutor<BlogPost> {
}