Re: how to use Ehcache 3 + in shirt?

2017-08-12 Thread Mike Guo
finally, I googled one project shiro-ehcache3. 
here it is :
https://github.com/ehcache/ehcache-shiro 


but after I did testing, I found there is a bug in class: 
https://github.com/ehcache/ehcache-shiro/blob/master/src/main/java/org/ehcache/integrations/shiro/EhcacheShiroManager.java
 


line: 164

it strip the prefix,  so, when the code use the result as URL parameter, it 
always throw a exception.  

these code can be used just need comment line 164.


thanks


Mike


> 在 2017年8月12日,下午5:24,Mike Guo  写道:
> 
> hello.  all.
> 
> is there anybody have experiences for use ehcache 3 in Shiro? 
> 
> 
> I tried use it like this:
> 
>   @Bean
>   public DefaultWebSecurityManager securityManager() throws IOException {
>   
> 
>   SessionManager sessionManager = new DefaultWebSessionManager();
>   
>   EhCacheManager cacheManager = new EhCacheManager();
>   cacheManager.setCacheManagerConfigFile(
>   new 
> ClassPathResource("session-cache.xml").getFile().getAbsolutePath()
>   );
>   
>   DefaultWebSecurityManager securityManager = new 
> DefaultWebSecurityManager();
>   
>   securityManager.setRealm(myRealm());
>   securityManager.setSessionManager(sessionManager);
>   securityManager.setCacheManager(cacheManager);
>   
>   
>   return securityManager;
>   
>   }
>   
> 
> and the content in session-cache.xml like this:
> 
> 
> 
>  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance 
> '
> xmlns='http://www.ehcache.org/v3 '
> xsi:schemaLocation="http://www.ehcache.org/v3  
> http://www.ehcache.org/schema/ehcache-core.xsd 
> ">
> 
>
> 
>   2000 
>   500 
> 
>   
> 
> 
> 
> 
> 
> 
> but system report a error.   
> 
>   ... 89 more
> Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
> instantiate 
> [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor]:
>  Factory method 'authorizationAttributeSourceAdvisor' threw exception; nested 
> exception is org.springframework.beans.factory.BeanCreationException: Error 
> creating bean with name 'securityManager' defined in 
> com.fbcglobal.customer.config.RootConfig: Bean instantiation via factory 
> method failed; nested exception is 
> org.springframework.beans.BeanInstantiationException: Failed to instantiate 
> [org.apache.shiro.web.mgt.DefaultWebSecurityManager]: Factory method 
> 'securityManager' threw exception; nested exception is 
> org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: Error 
> configuring from input stream. Initial cause was null:6: Element  
> does not allow attribute "xmlns:xsi".
>   at 
> org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
>   at 
> org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
>   ... 106 more
> 
> 
> 
> it that mean  Shiro doesn’t support ehcache 3?
> 
> 
> 
> if it support it,  would you point me a way?
> 
> 
> Many thanks
> 
> 
> Mike
> 



Re: how to use Ehcache 3 + in shirt?

2017-08-12 Thread Mike Guo
I am so sorry. Typo.  Shiro

thanks

Mike


> 在 2017年8月12日,下午5:24,Mike Guo  写道:
> 
> hello.  all.
> 
> is there anybody have experiences for use ehcache 3 in Shiro? 
> 
> 
> I tried use it like this:
> 
>   @Bean
>   public DefaultWebSecurityManager securityManager() throws IOException {
>   
> 
>   SessionManager sessionManager = new DefaultWebSessionManager();
>   
>   EhCacheManager cacheManager = new EhCacheManager();
>   cacheManager.setCacheManagerConfigFile(
>   new 
> ClassPathResource("session-cache.xml").getFile().getAbsolutePath()
>   );
>   
>   DefaultWebSecurityManager securityManager = new 
> DefaultWebSecurityManager();
>   
>   securityManager.setRealm(myRealm());
>   securityManager.setSessionManager(sessionManager);
>   securityManager.setCacheManager(cacheManager);
>   
>   
>   return securityManager;
>   
>   }
>   
> 
> and the content in session-cache.xml like this:
> 
> 
> 
>  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance 
> '
> xmlns='http://www.ehcache.org/v3 '
> xsi:schemaLocation="http://www.ehcache.org/v3  
> http://www.ehcache.org/schema/ehcache-core.xsd 
> ">
> 
>
> 
>   2000 
>   500 
> 
>   
> 
> 
> 
> 
> 
> 
> but system report a error.   
> 
>   ... 89 more
> Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
> instantiate 
> [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor]:
>  Factory method 'authorizationAttributeSourceAdvisor' threw exception; nested 
> exception is org.springframework.beans.factory.BeanCreationException: Error 
> creating bean with name 'securityManager' defined in 
> com.fbcglobal.customer.config.RootConfig: Bean instantiation via factory 
> method failed; nested exception is 
> org.springframework.beans.BeanInstantiationException: Failed to instantiate 
> [org.apache.shiro.web.mgt.DefaultWebSecurityManager]: Factory method 
> 'securityManager' threw exception; nested exception is 
> org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: Error 
> configuring from input stream. Initial cause was null:6: Element  
> does not allow attribute "xmlns:xsi".
>   at 
> org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
>   at 
> org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
>   ... 106 more
> 
> 
> 
> it that mean  Shiro doesn’t support ehcache 3?
> 
> 
> 
> if it support it,  would you point me a way?
> 
> 
> Many thanks
> 
> 
> Mike
> 



Re: how to use Ehcache 3 + in shirt?

2017-08-12 Thread Mike Guo
I am so sorry,  Typo: Shiro


Mike

> 在 2017年8月12日,下午5:24,Mike Guo  写道:
> 
> hello.  all.
> 
> is there anybody have experiences for use ehcache 3 in Shiro? 
> 
> 
> I tried use it like this:
> 
>   @Bean
>   public DefaultWebSecurityManager securityManager() throws IOException {
>   
> 
>   SessionManager sessionManager = new DefaultWebSessionManager();
>   
>   EhCacheManager cacheManager = new EhCacheManager();
>   cacheManager.setCacheManagerConfigFile(
>   new 
> ClassPathResource("session-cache.xml").getFile().getAbsolutePath()
>   );
>   
>   DefaultWebSecurityManager securityManager = new 
> DefaultWebSecurityManager();
>   
>   securityManager.setRealm(myRealm());
>   securityManager.setSessionManager(sessionManager);
>   securityManager.setCacheManager(cacheManager);
>   
>   
>   return securityManager;
>   
>   }
>   
> 
> and the content in session-cache.xml like this:
> 
> 
> 
>  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance 
> '
> xmlns='http://www.ehcache.org/v3 '
> xsi:schemaLocation="http://www.ehcache.org/v3  
> http://www.ehcache.org/schema/ehcache-core.xsd 
> ">
> 
>
> 
>   2000 
>   500 
> 
>   
> 
> 
> 
> 
> 
> 
> but system report a error.   
> 
>   ... 89 more
> Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
> instantiate 
> [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor]:
>  Factory method 'authorizationAttributeSourceAdvisor' threw exception; nested 
> exception is org.springframework.beans.factory.BeanCreationException: Error 
> creating bean with name 'securityManager' defined in 
> com.fbcglobal.customer.config.RootConfig: Bean instantiation via factory 
> method failed; nested exception is 
> org.springframework.beans.BeanInstantiationException: Failed to instantiate 
> [org.apache.shiro.web.mgt.DefaultWebSecurityManager]: Factory method 
> 'securityManager' threw exception; nested exception is 
> org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: Error 
> configuring from input stream. Initial cause was null:6: Element  
> does not allow attribute "xmlns:xsi".
>   at 
> org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
>   at 
> org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
>   ... 106 more
> 
> 
> 
> it that mean  Shiro doesn’t support ehcache 3?
> 
> 
> 
> if it support it,  would you point me a way?
> 
> 
> Many thanks
> 
> 
> Mike
> 



how to use Ehcache 3 + in shirt?

2017-08-12 Thread Mike Guo
hello.  all.

is there anybody have experiences for use ehcache 3 in Shiro? 


I tried use it like this:

@Bean
public DefaultWebSecurityManager securityManager() throws IOException {


SessionManager sessionManager = new DefaultWebSessionManager();

EhCacheManager cacheManager = new EhCacheManager();
cacheManager.setCacheManagerConfigFile(
new 
ClassPathResource("session-cache.xml").getFile().getAbsolutePath()
);

DefaultWebSecurityManager securityManager = new 
DefaultWebSecurityManager();

securityManager.setRealm(myRealm());
securityManager.setSessionManager(sessionManager);
securityManager.setCacheManager(cacheManager);


return securityManager;

}


and the content in session-cache.xml like this:



http://www.ehcache.org/v3 
http://www.ehcache.org/schema/ehcache-core.xsd";>

   

  2000 
  500 

  






but system report a error.   

... 89 more
Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
instantiate 
[org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor]:
 Factory method 'authorizationAttributeSourceAdvisor' threw exception; nested 
exception is org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'securityManager' defined in 
com.fbcglobal.customer.config.RootConfig: Bean instantiation via factory method 
failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.apache.shiro.web.mgt.DefaultWebSecurityManager]: Factory method 
'securityManager' threw exception; nested exception is 
org.apache.shiro.cache.CacheException: net.sf.ehcache.CacheException: Error 
configuring from input stream. Initial cause was null:6: Element  does 
not allow attribute "xmlns:xsi".
at 
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
... 106 more



it that mean  Shiro doesn’t support ehcache 3?



if it support it,  would you point me a way?


Many thanks


Mike