1. ホーム
  2. java

Spring MVC アノテーションエラーです。引数型[java.lang.String]の名前が利用できません。

2022-02-19 04:31:29
<パス

eclipseでは正常に動作しますが、antをパッケージ化するとエラーが報告されます。

<! -- Define the task to compile the java files in the src folder and the compiled class files to the created folder. -->
<! -- Resolve ant packaging spring parameter injection debug="true" encoding="utf-8"-->
<target name="compile" depends="clean">
   <javac srcdir="${basedir}/src" destdir="${basedir}/build" includeantruntime="false" 
       debug="true" encoding="utf-8">
      <classpath refid="project.lib">
      </classpath>
   </javac>
</target>


コンパイル時にデバッグサポートを追加する:debug="true"。