本文介紹了如何從表中檢索特定的列-JPA或CrudRepository?我只想從用戶表中檢索電子郵件列的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
用戶模型
@Entity
@Table(name = "user",uniqueConstraints = {@UniqueConstraint(columnNames = {"email"}) })
public class User implements Serializable{
/**
*
*/
private static final long serialVersionUID = 382892255440680084L;
private int id;
private String email;
private String userName;
private Set<Role> roles = new HashSet<Role>();
public User() {}
}
我對應的用戶回購:
package hello.repository;
import org.springframework.data.repository.CrudRepository;
import hello.model.User;
public interface UserRepository extends CrudRepository<User,Long> {
}
在控制器中:
@GetMapping(path="/all")
public @ResponseBody Iterable<User> getAllUsers() {
// This returns a JSON or XML with the users
return userRepository.findAll();
}
我發(fā)現(xiàn)這將檢索整個用戶表,但這不是我想要的。我的要求是只從用戶表的電子郵件列。
如何僅從用戶表中檢索電子郵件?->類似于SELECT EMAIL FROM USER的SQL查詢;
推薦答案
在UserRepository
中使用@Query
批注創(chuàng)建查詢,如下所示:
public interface UserRepository extends CrudRepository<User,Long> {
@Query("select u.email from User u")
List<String> getAllEmail();
}
在您的控制器中調(diào)用它
@GetMapping(path="/user/email")
public @ResponseBody List<String> getAllEmail() {
return userRepository.getAllEmail();
}
這篇關于如何從表中檢索特定的列-JPA或CrudRepository?我只想從用戶表中檢索電子郵件列的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,