-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SHIRO-890] Avoid another proxy creator when @EnableAspectJAutoProxy …
…enabled Fixes: SHIRO-890
- Loading branch information
Showing
6 changed files
with
227 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...roovy/org/apache/shiro/spring/boot/autoconfigure/AspectjAndDefaultProxyCreatorTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.shiro.spring.boot.autoconfigure; | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator | ||
import org.springframework.aop.config.AopConfigUtils | ||
import org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator | ||
import org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator | ||
import org.springframework.beans.BeansException | ||
import org.springframework.beans.factory.annotation.Autowired | ||
import org.springframework.boot.test.context.SpringBootTest | ||
import org.springframework.context.ApplicationContext | ||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner | ||
|
||
import static org.hamcrest.Matchers.* | ||
import static org.hamcrest.MatcherAssert.assertThat | ||
|
||
@SpringBootTest(classes = AspectjAndDefaultProxyCreatorApplication.class) | ||
@RunWith(SpringJUnit4ClassRunner.class) | ||
class AspectjAndDefaultProxyCreatorTest { | ||
|
||
@Autowired | ||
private ApplicationContext applicationContext | ||
|
||
@Test | ||
void defaultAdvisorAutoProxyCreator() throws BeansException { | ||
// There are two proxy creators before SHIRO-890 which causes problem when @EnableAspectJAutoProxy is enabled. | ||
String[] names = ["defaultAdvisorAutoProxyCreator", AopConfigUtils.AUTO_PROXY_CREATOR_BEAN_NAME] | ||
for (String name : names) { | ||
Object creator = applicationContext.getBean(name) | ||
assertThat(creator, anyOf( | ||
instanceOf(DefaultAdvisorAutoProxyCreator.class), | ||
instanceOf(AnnotationAwareAspectJAutoProxyCreator.class) | ||
)) | ||
} | ||
String[] beanNames = applicationContext.getBeanNamesForType(AbstractAdvisorAutoProxyCreator.class) | ||
assertThat(names, arrayContainingInAnyOrder(beanNames)) | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...ache/shiro/spring/boot/autoconfigure/ShiroAnnotationProcessorAutoConfigurationTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.shiro.spring.boot.autoconfigure; | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator | ||
import org.springframework.aop.config.AopConfigUtils | ||
import org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator | ||
import org.springframework.beans.BeansException | ||
import org.springframework.beans.factory.annotation.Autowired | ||
import org.springframework.boot.test.context.SpringBootTest | ||
import org.springframework.context.ApplicationContext | ||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat | ||
import static org.hamcrest.Matchers.* | ||
|
||
@SpringBootTest(classes = AspectjEnabledApplication.class) | ||
@RunWith(SpringJUnit4ClassRunner.class) | ||
class ShiroAnnotationProcessorAutoConfigurationTest { | ||
|
||
@Autowired | ||
private ApplicationContext applicationContext | ||
|
||
@Test | ||
void defaultAdvisorAutoProxyCreator() throws BeansException { | ||
// There is only one proxy creator, and it's AnnotationAwareAspectJAutoProxyCreator as expected. | ||
Object creator = applicationContext.getBean(AopConfigUtils.AUTO_PROXY_CREATOR_BEAN_NAME) | ||
assertThat("@EnableAspectJAutoProxy will create an instance of AnnotationAwareAspectJAutoProxyCreator", | ||
creator, instanceOf(AnnotationAwareAspectJAutoProxyCreator.class)) | ||
String[] names = applicationContext.getBeanNamesForType(AbstractAdvisorAutoProxyCreator.class) | ||
assertThat(names, arrayWithSize(1)) | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
.../org/apache/shiro/spring/boot/autoconfigure/AspectjAndDefaultProxyCreatorApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.shiro.spring.boot.autoconfigure; | ||
|
||
import org.apache.shiro.realm.Realm; | ||
import org.apache.shiro.realm.text.TextConfigurationRealm; | ||
import org.springframework.aop.config.AopConfigUtils; | ||
import org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.DependsOn; | ||
import org.springframework.context.annotation.EnableAspectJAutoProxy; | ||
|
||
@EnableAutoConfiguration | ||
@EnableAspectJAutoProxy | ||
public class AspectjAndDefaultProxyCreatorApplication { | ||
|
||
public static void main(String... args) { | ||
SpringApplication.run(AspectjAndDefaultProxyCreatorApplication.class); | ||
} | ||
|
||
@Bean | ||
@SuppressWarnings("Duplicates") | ||
Realm getTextConfigurationRealm() { | ||
|
||
TextConfigurationRealm realm = new TextConfigurationRealm(); | ||
realm.setUserDefinitions("joe.coder=password,user\n" + | ||
"jill.coder=password,admin"); | ||
|
||
realm.setRoleDefinitions("admin=read,write\n" + | ||
"user=read"); | ||
realm.setCachingEnabled(true); | ||
return realm; | ||
} | ||
|
||
@Bean | ||
@DependsOn("lifecycleBeanPostProcessor") | ||
@ConditionalOnMissingBean(value = DefaultAdvisorAutoProxyCreator.class, name = AopConfigUtils.AUTO_PROXY_CREATOR_BEAN_NAME) | ||
public DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator() { | ||
return new DefaultAdvisorAutoProxyCreator(); | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
...r/src/test/java/org/apache/shiro/spring/boot/autoconfigure/AspectjEnabledApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.shiro.spring.boot.autoconfigure; | ||
|
||
import org.apache.shiro.realm.Realm; | ||
import org.apache.shiro.realm.text.TextConfigurationRealm; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.EnableAspectJAutoProxy; | ||
|
||
@EnableAutoConfiguration | ||
@EnableAspectJAutoProxy | ||
public class AspectjEnabledApplication { | ||
|
||
public static void main(String... args) { | ||
SpringApplication.run(AspectjEnabledApplication.class); | ||
} | ||
|
||
@Bean | ||
@SuppressWarnings("Duplicates") | ||
Realm getTextConfigurationRealm() { | ||
|
||
TextConfigurationRealm realm = new TextConfigurationRealm(); | ||
realm.setUserDefinitions("joe.coder=password,user\n" + | ||
"jill.coder=password,admin"); | ||
|
||
realm.setRoleDefinitions("admin=read,write\n" + | ||
"user=read"); | ||
realm.setCachingEnabled(true); | ||
return realm; | ||
} | ||
} |