java - Spring Data Rest执行查询但返回500内部服务器错误

标签 java spring rest spring-boot spring-data-rest

我正在使用 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

最佳答案

将调试器放在与数据库建立连接的行上。

关于java - Spring Data Rest执行查询但返回500内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30878086/

相关文章:

Java Android 套接字线程

java - Log4j 不在消息前打印名称

java - 扫描仪(System.in) - 无限循环

java - MongoDB:StackOveflowError

java - Spring 安全 OAuth stackoverflowException

javascript - AngularJS/NodeJS/RESTEasy+JBoss/LDAP 堆栈的身份验证机制

java - 从静态类接收数据

java - 如何生成依赖项目jar文件

java - 使用 Spring "forward:"前缀导致 StackOverflowError

java - 我想知道如何从另一个应用程序获取使用 Spring Security 保护的 Web 服务 RES 的内容