1、最近把eclipse的web项目转换成maven的,遇到了一些问题在此做一些记录。
2、web项目中有部分jar,有部分配置在pom.xml中,但是编译的时候项目找不到pom.xml中的jar。
解决办法:
工程名上右击 -> maven 中没有操作update project;
工程名上右击 -> Properties -> Deployment Assembly,右边框中没有操作如下步骤:
Add -> Java Build Path Entries -> next -> 选择maven Dependencies;
(原理是将maven中的jar也加入到项目中编译)
3、已经有相应的jar,但是java类中无法引用。
解决办法:
工程名上右击 -> maven -> Disable Maven Nature;
工程名上右击 -> Configure -> Convert to maven project;