eclipse + tomcat + maven 集成开发环境

eclipse + tomcat + maven 集成开发环境,满足:

   1.对jsp的修改直接生效

   2.改好代码后只需要点击启动tomcat,不需要执行mvn package等命令

  

网上搜了半天,完整的解决方案是:

   0. eclipse要用jee版,并装好m2eclipse插件

   1. 按
这个配置dynamic web module,将web root配成 src/main/webapp.

   2. 在server窗口里新增tomcat并且将刚才的工程加进去。tomcat可能要7.0才行,具体版本 见:
这里

   3. 设置context path为你想要的,否则context path将与你的project同名。 Project Properties => Web Project Settings => Context Root

   4. 将maven所指向的依赖库纳入web module, 否则会报找不到类的错误.  Project Properties => Deployment Assembly => Add "Java Build Path Entry", 选择Maven Dependencies

   5. 启动tomcat

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.