ufc.persistence.repository.UserDao.java Source code

Java tutorial

Introduction

Here is the source code for ufc.persistence.repository.UserDao.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package ufc.persistence.repository;

import ufc.persistence.entity.User;
import org.springframework.data.jpa.repository.JpaRepository;

public interface UserDao extends JpaRepository<User, Integer>, UserDaoCustom {

    public User findByUsername(String username);
}