使用Spring Data JPA的自定义Query返回自定义对象

时间:2018-04-05 21:49:30

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

我已经研究过问题,但找不到合适的答案。

我试图在Spring Rest应用程序中使用Spring Data JPA使用自定义查询返回表中的某些列。但是,查询在执行时总是抛出异常。

  

org.springframework.core.convert.ConverterNotFoundException:找不到能够从类型[java.lang.String]转换为[org.forum.api.model.Message]类型的转换器

我知道可以使用String但是为什么Message对象没有正确地序列化为JSON,即使我已经在Spring Boot main的子包中为它创建了模型?

这是我的模特课。

@Entity
@Table(name="message")
public class Message {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "text_id")
    private long id;

    @NotNull
    private String author;

    @NotNull
    private String text;

    @NotNull
    private String recepient;

    public long getId() {return id;}

    public void setId(long id) {this.id = id;}

    public String getAuthor() {return author;}

    public void setAuthor(String author) {this.author = author;}

    public String getText() {return text;}

    public void setText(String text) {this.text = text;}

    public String getRecepient() {return recepient;}

    public void setRecepient(String recepient) {this.recepient = recepient;}

}

这是控制器类。

@RestController
@RequestMapping("/api")
public class MessageController {

    @Autowired
    private MessageService messageService;

    @GetMapping("/message/{id}")
    public Message getMessageTextById(@PathVariable(value="id") Long id) {
        return messageService.getMessageTextById(id);       
    }

}

这是服务类。

@Service
public class MessageServiceImpl implements MessageService {

    @Autowired
    MessageRepository messageRepo;

    @Override
    public Message getMessageTextById(Long id) {        
        return messageRepo.findMessageTextById(id);     
    }

}

这是Repository Class

@Repository
public interface MessageRepository extends JpaRepository<Message, Long> {


    @Query("SELECT m.author, m.text FROM Message m WHERE m.id = :id")
    Message findMessageTextById(@Param("id") Long id);

}

1 个答案:

答案 0 :(得分:3)

如果只想检索某些列,可以使用简单的bean类:

public class CustomMessage{
  private String author;
  private String text;

  public CustomMessage(String author, String text) {
    this.author = author;
    this.author = text;
  }
}

然后从您的存储库返回一个bean实例:

@Query("SELECT new path_to_class.CustomMessage(m.author, m.text) FROM Message m WHERE m.id = :id")

或检索地图:

 @Query("SELECT new map(m.author as author, m.text as text) FROM Message m WHERE m.id = :id")