Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题处理方法
Posted xlxxcc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题处理方法相关的知识,希望对你有一定的参考价值。
解决处理方法:
添加编译参数 -parameters
1) 在IDEA中,
File->Settings->Java Compiler 的Addintional command line parameters 的下面加上-parameters参数即可
2) 、在Maven中添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
3) 、 在eclipse中
Preferences->java->Compiler下勾选Store information about method parameters选项。
以上是关于Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题处理方法的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题 原因分析
Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题 原因分析
Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题处理方法
Spring boot 使用@Endpoint注解自定义端点, 不能通过 Restfult 访问问题处理方法