终于登入到了系统首页,但是背面点击相干功能子页面,还是会报错。
7 进入系统首页后,点击相干功能子页面,开始报错,
java.lang.IllegalArgumentException: Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag.at
解决办法如下
刚开始以为是代码错误,这是由于利用Spring 6.0以上版本的问题,假如不想降版本,在项目pom文件build节点添加如下代码:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
<encoding>UTF-8</encoding>
<!-- 启用 -parameters 编译器标志 -->
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
8 上传文件失败
spring6不在支持