欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot jpa查询操作命名

程序员文章站 2022-05-02 09:40:30
...
import com.example.demo.entity.AdminUser;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserDao extends JpaRepository<AdminUser, Long> {
    public AdminUser getByPasswordAndUsername(String username,String password);
}

当你需要使用springboot jpa时,你需要创建一个接口并继承 JpaRepository<T, ID>,之后你可以使用里面的crud操作,如果你有特殊的查询需求,你可以输入get,再输入By,这些在编辑器中会有提示,对象的属性也会有提示,属性和属性之间用And连接。

 

getBy属性名And属性名And属性名(属性类型 属性值,属性类型 属性值)

相关标签: springboot jpa