在idea中使用maven执行 `compile` 命令编译项目,发现报错:“找不到符号“。

Posted 二木成林

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在idea中使用maven执行 `compile` 命令编译项目,发现报错:“找不到符号“。相关的知识,希望对你有一定的参考价值。

异常

在idea中使用maven执行 compile 命令编译项目,发现报错:“找不到符号”。


但提示出错的代码中并没有出现编译错误,而且通过 tomcat 是能正常启动的。

原因

原因是我在项目中除了使用maven依赖引入的包之外,还引入了本地其他路径下的包文件。

但是如果我们不对pom.xml进行特殊配置的话,maven执行 compilepackage 命令是不会自动去引用和编译lib中的jar文件的,就会出现上面的错误。

解决

我们需要对maven的 pom.xml 文件进行特殊配置,才能让它去执行 compile 命令时去自动引用编译外部的 jar 包文件。即修改 maven-compiler-plugin

未修改之前的 maven-compiler-plugin 内容如下:

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
		</plugins>

修改的话,我们需要在 <configuration></configuration> 标签下添加 <compilerArguments></compilerArguments> 标签,表示设置编译参数,在 <compilerArguments></compilerArguments> 标签内添加 <extdirs></extdirs> 标签设置外部 jar 包的路径,这里使用的是绝对路径。可以将其改为$project.basedir\\src\\main\\webapp\\WEB-INF\\lib,其中 $project.basedir 是maven提供的,指向项目的根目录。所以修改后的配置如下:

		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<encoding>UTF-8</encoding>
					<compilerArguments>
						<extdirs>C:\\xxx\\xxxxxx\\src\\main\\webapp\\WEB-INF\\lib</extdirs>
					</compilerArguments>
				</configuration>
			</plugin>
		</plugins>

注意,这里 maven-compiler-plugin 插件的版本是 3.1,所以能够使用 <compilerArguments></compilerArguments> 标签,但其他版本的可能并不是这样写的,需要注意。

参考资料

以上是关于在idea中使用maven执行 `compile` 命令编译项目,发现报错:“找不到符号“。的主要内容,如果未能解决你的问题,请参考以下文章

IDEA中环境配置和使用

疑难杂症maven-compiler-plugin 在 idea 下的问题

Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“

IDEA Maven项目 编译的问题

Idea 中提示:Warning:java: 源值1.5已过时, 将在未来所有发行版中删除

IDEA中Maven项目的生命周期操作说明