解决myeclipes : Assert cannot be resolved, Autowired cannot resolved to a type问题

解决myeclipes 中
1. Assert cannot be resolved,
2.Autowired cannot resolved to a type 问题。
解决了我新建web工程时WebRoot 改为 webapp后没有Web App Libraries后出现的故障
解决myeclipes : Assert cannot be resolved, Autowired cannot resolved to a type问题_第1张图片

参考这个哥们的————————————-
最近在做Web 项目时,新建了一个WEB 项目,如webdemo ,eclipse默认的build路径为build, WEB-INF存放于WebContent下面,今改了一个build路径和WebContent名字,发现项目不可用了,

  1. 具体修改过程过,把WebContent 改为 WebRoot
  2. 把build路径从build/classes 改为 webdemo/WebRoot/WEB-INF/classes

在修改之前原存放于lib下的jar包都存于eclipse项目的Libraries/Web App Libraries 目录下面,改后,Web App Libraries 变为空了,而且Tomcat6.x在启动的时候也识别不了了。研究了一下午,终于找出问题所在,今天特发出来,以供后来的朋友参照。

我们打开所建项目目录,在根目录下面有一.settings \ org.eclipse.wst.common.component 文件,
在刚新建一个项目时,此文件下面的内容如下:

你可能感兴趣的:(java)