Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use @ Configuration and @ bean annotations in Springboot

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article focuses on "how to use @ Configuration and @ bean annotations in Springboot". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor learn how to use @ Configuration and @ bean annotations in Springboot.

The @ Configuration annotation can achieve the function of using xml configuration files in Spring

@ Bean is equivalent to the

In the spring project, we integrate third-party frameworks such as shiro and configure them in the spring.xml configuration file, for example:

/ css/**=anon / js/**=anon / validatecode.jsp*=anon / images/**=anon / login.jsp=anon / service/**=anon / * * = authc

Integration with shiro at springboot:

@ Configurationpublic class ShiroConfig {@ Bean public ShiroFilterFactoryBean shirFilter (SecurityManager securityManager) {ShiroFilterFactoryBean shiroFilterFactoryBean = new ShiroFilterFactoryBean (); shiroFilterFactoryBean.setSecurityManager (securityManager); Map filterChainDefinitionMap = new HashMap (); shiroFilterFactoryBean.setLoginUrl ("/ login"); shiroFilterFactoryBean.setUnauthorizedUrl ("/ unauthc"); shiroFilterFactoryBean.setSuccessUrl ("/ home/index"); filterChainDefinitionMap.put ("/ *", "anon"); filterChainDefinitionMap.put ("/ authc/index", "authc"); return shiroFilterFactoryBean } @ Bean public HashedCredentialsMatcher hashedCredentialsMatcher () {HashedCredentialsMatcher hashedCredentialsMatcher = new HashedCredentialsMatcher (); hashedCredentialsMatcher.setHashAlgorithmName (PasswordHelper.ALGORITHM_NAME); hashedCredentialsMatcher.setHashIterations (PasswordHelper.HASH_ITERATIONS); return hashedCredentialsMatcher;} @ Bean public EnceladusShiroRealm shiroRealm () {EnceladusShiroRealm shiroRealm = new EnceladusShiroRealm (); shiroRealm.setCredentialsMatcher (hashedCredentialsMatcher ()); return shiroRealm;} @ Bean public SecurityManager securityManager () {DefaultWebSecurityManager securityManager = new DefaultWebSecurityManager (); securityManager.setRealm (shiroRealm ()); return securityManager @ Bean public PasswordHelper passwordHelper () {return new PasswordHelper ();}}

The @ Configuration annotation can achieve the effect of using xml configuration files in Spring.

@ Bean is equivalent to the

At this point, I believe you have a better understanding of "how to use @ Configuration and @ bean annotations in Springboot". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report