为了账号安全,请及时绑定邮箱和手机立即绑定

HTMLUnit 未使用 JavaScript 返回完全加载的页面

HTMLUnit 未使用 JavaScript 返回完全加载的页面

鸿蒙传说 2023-08-09 15:21:08
Java 新手。在我的项目中,我通过 findAll(spec) 获取数据,如下所示:public interface ProductRepository extends JpaRepository<Product, Long> {    List<Product> findAll(Specification<Product> spec);在控制器中,我将响应转换为 DTO,如下所示:(ProductResponse 是一个 DTO)private List<ProductResponse> convertProductListToResponse(List<Product> products) {    List<ProductResponse> productResponseList = new ArrayList<ProductResponse>();    for(int i = 0; i < products.size(); i++) {        ProductResponse productResponse = new ProductResponse();            productResponse.convert(products.get(i));            productResponseList.add(productResponse);    }    return productResponseList;}@PostMapping("getProducts/{page}")public List<ProductResponse> getAllProducts(@PathVariable("page") int page) {    ProductSpecification nameSpecification = new ProductSpecification(new SearchCriteria("title", ":", "First Product"));    // Service simply uses repository method:    List<Product> filterProducts = productService.findAll(Specification.where(nameSpecification));    List<ProductResponse> productResponseList = this.convertProductListToResponse(filterProducts);    return productResponseList;}然后我决定通过分页获取数据,所以我更改了存储库:public interface ProductRepository extends PagingAndSortingRepository<Product, Long> {     List<Product> findAll(Specification<Product> spec, Pageable pageable);现在我收到以下错误:java.lang.ClassCastException: org.springframework.data.domain.PageImpl cannot be cast to com.vendo.app.entity.Product然后我直接在控制器中输出响应(filterProducts),并发现响应结构如下:[ { "content": [        { "id": 1, "deleted": false, "title": "First Product", ...        ....// array of product objects我实在不明白,响应类型为List的方法怎么会返回这样的响应?如何从此响应中获取产品列表并将其转换为 DTO?
查看完整描述

1 回答

?
慕少森

TA贡献2019条经验 获得超9个赞

鉴于 HTMLUnit 在 JavaScript 方面存在的问题,您需要找到解决方法。知道你想要哪个元素后,你可以实现一个 while 循环。这可能看起来像这样:

while(!page.asText().contains(„<div id=\„exmaple-id\">“)){
        webClient.waitForBackgroundJavaScript(500);
    }

如果你害怕陷入这个循环,你可以在 while 条件中添加一个计数变量。就我的经验而言,这是处理这种延迟的可靠方法吗?


查看完整回答
反对 回复 2023-08-09
  • 1 回答
  • 0 关注
  • 118 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信