eclipse编写代码所遇到的问题

spring方面:

1.Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@af8358: defining beans [personServiceBean]; root of factory hierarchy

  解决:在web.xml的web-app节点下加上: 

<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

2.org.springframework.beans.factory.BeanCreationException: Error creating bean 异常

  

eclipse方面:

1.eclipse建包时总是生成package-info.java

  

2.eclipse alt+/智能提示错误:problems during content assist

  解决办法:

  

svn方面:

1.svn报错:Cannot negotiate authentication mechanism

  解决方案: 在eclipse->window->preference->team->svn中将svn接口设定为svnkit。

mysql
原文地址:https://www.cnblogs.com/excellent-vb/p/9396585.html