¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.framework.config.properties; |
| | | |
| | | import lombok.Data; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | | * Security é
ç½®å±æ§ |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Data |
| | | @Component |
| | | @ConfigurationProperties(prefix = "security") |
| | | public class SecurityProperties { |
| | | |
| | | /** |
| | | * éåºç»å½url |
| | | */ |
| | | private String logoutUrl; |
| | | |
| | | /** |
| | | * å¿åæ¾è¡è·¯å¾ |
| | | */ |
| | | private String[] anonymous; |
| | | |
| | | /** |
| | | * ç¨æ·ä»»æè®¿é®æ¾è¡è·¯å¾ |
| | | */ |
| | | private String[] permitAll; |
| | | |
| | | } |