我不能在我的代码中使用findOne()方法

时间:2018-03-11 19:14:13

标签: java spring hibernate spring-boot spring-data-jpa

我的应用中有错误,因为我使用了findOne()方法。在我简单的代码下面。在用户类中,我的ID是字符串电子邮件,我试图在我的类UserService中使用这样的ID:

public User findUser(String email){
    return userRepository.findOne(email);
}

但我有这个错误:

  接口org.springframework.data.repository.query.QueryByExampleExecutor中的

方法findOne不能应用于给定类型;

    必需:org.springframework.data.domain.Example
    发现:java.lang.String
    原因:无法推断类型变量(S)       (参数不匹配; java.lang.String无法转换为org.springframework.data.domain.Example)

用户类:

@Entity
@Data
@Table(name = "User")
public class User {
    @Id
    @Email
    @NotEmpty
    @Column(unique = true)
    private String email;

    @NotEmpty
    private String name;

    @NotEmpty
    @Size(min = 5)
    private String password;

    @OneToMany(mappedBy = "user", cascade = CascadeType.ALL)
    private List<Task> tasks;

    @ManyToMany(cascade = CascadeType.ALL)
    @JoinTable(name = "USER_ROLE", joinColumns = {
        @JoinColumn(name = "USER_EMAIL", referencedColumnName = "email")
    }, inverseJoinColumns = {@JoinColumn(name = "ROLE_NAME", referencedColumnName = "name")})
    private List<Role> roles;
}

和UserRepository:

public interface UserRepository extends JpaRepository<User, String> {
}

3 个答案:

答案 0 :(得分:9)

如果您只想按ID搜索,请使用findByIdgetOne代替findOne

public User findUser(String email){
    return userRepository.getOne(email); // throws when not found or
                                         // eventually when accessing one of its properties
                                         // depending on the JPA implementation
}

public User findUser(String email){
    Optional<User> optUser = userRepository.findById(email); // returns java8 optional
    if (optUser.isPresent()) {
        return optUser.get();
    } else {
        // handle not found, return null or throw
    }
}

函数findOne()收到Example<S>,此方法用于查找示例,因此您需要提供示例对象和要检查的字段。

您可以通过示例找到如何使用find。

https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#query-by-example.matchers

但它基本上就像是。

User user = new User();                          
person.setName("Dave");                           

ExampleMatcher matcher = ExampleMatcher.matching()     
    .withIgnorePaths("name")                         
    .withIncludeNullValues()                             
    .withStringMatcherEnding();

Example<User> example = Example.of(user, matcher); 

答案 1 :(得分:4)

JpaRepository中的方法findOne定义为:

<S extends T> Optional<S> findOne(Example<S> example)

Reference

和哟传递一个String作为参数。 如果要通过User.email查找,则必须将方法定义为:

User findOneByEmail (String email);

query creation document

解释了这种机制

答案 2 :(得分:1)

我有类似的东西。这是因为您使用的是较新版本。

您可以通过以下方式修复它:

return userRepository.findById(email).orElse(null);