簡體   English   中英

Spring Data Rest執行查詢,但返回500內部服務器錯誤

[英]Spring Data Rest executes query but returns 500 internal Server Error

我正在使用Spring Boot和Spring Data Rest,並且遇到500個內部服務器錯誤,但是控制台中未顯示任何消息。

我有以下幾點:

ProdutoVendaRepository.java

public interface ProdutoVendaRepository extends PagingAndSortingRepository<ProdutoVenda, Integer> {

@Query("SELECT new br.com.contoso.model.VendaPorFamilia(b.nome, SUM(i.valorMultiplicado)) FROM ProdutoVenda i JOIN i.produto o JOIN o.familia b WHERE b.nome LIKE 'foo' GROUP BY b.nome")
List <VendaPorFamilia> teste();
}

VendaPorFamilia.java

public class VendaPorFamilia {

private String nome;

private double valorTotal;

public VendaPorFamilia(String nome, double valorTotal) {
    this.nome = nome;
    this.valorTotal = valorTotal;
}

//getters and setters

ProdutoVenda.java

@Entity
@Immutable
@Table(name = "INV1")
public class ProdutoVenda {

@Id
@Column(name = "LineNum")
private int id;

@Column(name = "ItemCode")
private String codigo;

@Column(name = "Quantity")
private double quantidade;

@Column(name = "Price")
private double precoUnitario;

@Column(name = "LineTotal")
private double valorMultiplicado;

@Column(name = "Dscription")
private String descricao;

@OneToOne
@JoinColumn(name = "ItemCode", updatable = false, insertable = false)
private Produto produto;

//getters and setters

當我嘗試

curl -v  -X GET -H "X-AUTH-TOKEN: TokenFoo"  
http://localhost:8080/api/produtoVendas/search/teste

日志顯示查詢已執行:

2015-06-16 17:05:45.884 DEBUG 7892 --- [http-nio-8080-exec-1]         org.hibernate.SQL                        
: select familia2_.ItmsGrpNam as col_0_0_, sum(produtoven0_.LineTotal) as col_1_0_ from 
INV1 produtoven0_ inner join OITM produto1_ on produtoven0_.ItemCode=produto1_.ItemCode 
inner join OITB familia2_ on produto1_.ItmsGrpCod=familia2_.ItmsGrpCod where    
familia2_.ItmsGrpNam like 'foo' group by familia2_.ItmsGrpNam

但我收到:

< HTTP/1.1 500 Internal Server Error
* Server Apache-Coyote/1.1 is not blacklisted
< Server: Apache-Coyote/1.1
< Content-Length: 0
< Date: Tue, 16 Jun 2015 20:05:46 GMT
< Connection: close
< 
* Closing connection 0

我不知道該怎么辦,我嘗試了很多事情,但似乎沒有任何效果。 是的,當我在MsSQL服務器中執行完全相同的生成查詢時,它返回所需的值。 所有其他存儲庫都可以正常工作...

感謝您的時間和幫助!

編輯:調試日志顯示以下內容:

2015-06-17 15:25:58.670 DEBUG 8667 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/api/produtoVendas/search/teste]
2015-06-17 15:25:58.674 DEBUG 8667 --- [http-nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /api/produtoVendas/search/teste
2015-06-17 15:25:58.678 DEBUG 8667 --- [http-nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Did not find handler method for [/api/produtoVendas/search/teste]
2015-06-17 15:25:58.692 DEBUG 8667 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Last-Modified value for [/api/produtoVendas/search/teste] is: -1
2015-06-17 15:25:58.758 DEBUG 8667 --- [http-nio-8080-exec-1] org.hibernate.SQL                        : select familia2_.ItmsGrpNam as col_0_0_, sum(produtoven0_.LineTotal) as col_1_0_ from INV1 produtoven0_ inner join OITM produto1_ on produtoven0_.ItemCode=produto1_.ItemCode inner join OITB familia2_ on produto1_.ItmsGrpCod=familia2_.ItmsGrpCod where familia2_.ItmsGrpNam like ‘foo’ group by familia2_.ItmsGrpNam
2015-06-17 15:25:58.836 DEBUG 8667 --- [http-nio-8080-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Resolving exception from handler [public org.springframework.http.ResponseEntity<java.lang.Object> org.springframework.data.rest.webmvc.RepositorySearchController.executeSearch(org.springframework.data.rest.webmvc.RootResourceInformation,org.springframework.web.context.request.WebRequest,java.lang.String,org.springframework.data.rest.webmvc.support.DefaultedPageable,org.springframework.data.domain.Sort,org.springframework.data.rest.webmvc.PersistentEntityResourceAssembler)]: java.lang.IllegalArgumentException: PersistentEntity must not be null!
2015-06-17 15:25:58.839 DEBUG 8667 --- [http-nio-8080-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Invoking @ExceptionHandler method: org.springframework.http.ResponseEntity<org.springframework.data.rest.webmvc.support.ExceptionMessage> org.springframework.data.rest.webmvc.RepositoryRestExceptionHandler.handleMiscFailures(java.lang.Exception)
2015-06-17 15:25:58.856 DEBUG 8667 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
2015-06-17 15:25:58.857 DEBUG 8667 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Successfully completed request

將調試器放在與數據庫建立連接的線路上。

嗯...這很奇怪,但是我發現了這個問題,並添加了一個控制器來調用該方法,它的工作原理就像一個魅力...

抱歉,這不是解決方法,但這是一個不錯的解決方法...

編輯:發生錯誤是因為它期望一個實體,所以我要做的就是用@Entity注釋VendaPorFamilia。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM