Org.thymeleaf.spring4.processor.attr.SpringHrefAttrProcessor

in my local environment, the protocol is that the http,thymeleaf template can normally send requests to the backend, but when using https in the production environment, it will throw the following exception with the following error. Excuse me, what is the reason for this?


@RequestMapping("/operationevents")
public class OperationEventController{

  @RequestMapping(value = "/logs/{id}/error/goods/list/{code:.+}", method = RequestMethod.GET)
  public @ResponseBody DatatablesResponse<GoodDto> getErrorGoods(//
      @PathVariable("id") String eventId, //
      @PathVariable("code") String code, //
      @DatatablesParams DatatablesCriterias criterias//
  ) {
    ...
  }

}
Mar.13,2021
Menu