maven +SSH日记(1)

1.-Dmaven.multiModuleProjectDirectory system propery is not set

直接的解决方法:使用低版本的maven

可以设一个环境变量M2_HOME指向你的maven安装目录

M2_HOME=D:\Apps\apache-maven-3.3.1

然后在Window->Preference->Java->Installed JREs->Edit

在Default VM arguments中设置

-Dmaven.multiModuleProjectDirectory=$M2_HOME


2.context:property-placeholder错误

支持spring的时候少了添加包

3.ExcrptionA nested exception is ExceptionB ;
则B是起源

4.Error applying BeanValidation relational constraints错误的解决

javax.persistence.validation.mode默认情况下是auto的,就是说如果不设置的话它是会自动去你的classpath下面找一个bean-validation**包,但是找不到,所以beanvalitionFactory错误
 
 
  
 
   true
 
   true
 
   org.hibernate.dialect.MySQLDialect
 
   none 
 
  
 
 

5.No matching bean of type [org.hibernate.SessionFactory] found for dependency

   
        contextConfigLocation
        classpath:spring.xml,classpath:spring-hibernate.xml
   

主要是web.xml这里的路径问题

你可能感兴趣的:(maven +SSH日记(1))