eclipse + maven + jboss 遇到ClassNotFoundException
在使用eclipse + maven + jboss开发过程中,碰到ClassNotFoundException, 原因应该是deployed包中未包含maven的依赖jar。
可以通过如下方法把依赖jar包括在war包中。
1. 选择项目,右击选择Properties
2. 选择Deployment Assembly, 查看Source有没有包括Maven dependency。,如果没有,则点击 Add...
3. 选择Java Build Path Entries > Maven Denpendencies
4. 最后添加保存。
再通过Server运行该项目的时候,exception就不会再出现了。