正常启动正常,debug启动报错

项目可以正常启动,debug启动报错如下
2020-02-19 16:16:44,080 [localhost-startStop-1] ERROR [org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:331)] - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘shiroFilter’ defined in URL [jar:file:/D:/xm/swhy/mup-studio-v2.1.0/apache-tomcat-8.5.6/wtpwebapps/cidp/WEB-INF/lib/com.meritit.mup.foundation.security-2.2.0.jar!/com/meritit/mup/foundation/security/spring-security.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.transaction.config.internalTransactionAdvisor’: Cannot resolve reference to bean ‘org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0’ while setting bean property ‘transactionAttributeSource’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0’: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor#0’ defined in URL [jar:file:/D:/xm/swhy/mup-studio-v2.1.0/apache-tomcat-8.5.6/wtpwebapps/cidp/WEB-INF/lib/com.meritit.mup.foundation.security-2.2.0.jar!/com/meritit/mup/foundation/security/spring-security.xml]: Cannot resolve reference to bean ‘securityManager’ while setting bean property ‘securityManager’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘securityManager’ defined in URL [jar:file:/D:/xm/swhy/mup-studio-v2.1.0/apache-tomcat-8.5.6/wtpwebapps/cidp/WEB-INF/lib/com.meritit.mup.foundation.security-2.2.0.jar!/com/meritit/mup/foundation/security/spring-security.xml]: Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property ‘realm’ threw exception; nested exception is org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: Disk store path can’t be created: C:\Users\�¶�ǿ\AppData\Local\Temp
Related cause: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name ‘shiroFilter’: Requested bean is currently in creation: Is there an unresolvable circular reference?

原因:windows的本地缓存路径中有中文字符,不能识别
解决方式:修改shiroehcache.xml中的路径,改为可识别的路径

你可能感兴趣的:(JAVA)