微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

带有春季启动功能的Swagger上的奇怪字符

如何解决带有春季启动功能的Swagger上的奇怪字符

我遇到一个奇怪的问题,我无法在本地和沙盒环境中重现它,而是在生产中发生。

Example 1

在这种情况下,似乎必需的指示符出了问题

Example 2

代码

List<EventDto> findEvents(
                        @ApiParam(value = "Page's number",name="_page",type="Integer",example = "1") @Valid @RequestParam(value = "_page",required = false,defaultValue = "1") Integer _page,@Min(1) @Max(16) @ApiParam(value = "Event Type (from 1 to 16)",name="type",example="1") @Valid @RequestParam(value = "type",required = false) Integer type,@ApiParam(value = "Event language",name="language",type="String",example="eu") @Valid @RequestParam(value = "language",required = false) String language,@ApiParam(value = "Municipality norA code",name="municipalitynoraCode",example="20") @Valid @RequestParam(value = "municipalitynoraCode",required = false) Integer municipalitynoraCode,@ApiParam(value = "Province norA code",name="provincenoraCode",example="48") @Valid @RequestParam(value = "provincenoraCode",required = false) Integer provincenoraCode);

List<TRN04EventDto> getEventsByDate(
                        @ApiParam(value = "Events year",name="year",example="2020",required = true) @PathVariable("year") Integer year,@Min(1) @Max(12) @ApiParam(value = "Events month",name="month",example="10",required = true) @PathVariable("month") Integer month,@Min(1) @Max(31) @ApiParam(value = "Events day",name="day",example="20",required = true) @PathVariable("day") Integer day);

我检查的第一件事是字符集元数据,没关系。

该项目是使用Maven创建的,并编译为jar文件,我无权访问。

有什么想法吗?

亲切的问候

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。