99-framework
1. PkgInfo
- springboot报ScannerException:character ‘@‘ that cannot start any token. (Do not use @ for indentation
<properties>
<pkgVersion>0.0.1-SNAPSHOT</pkgVersion>
<pkgTime>${maven.build.timestamp}</pkgTime>
</properties>
<!-- springboot项目如果没有指定`spring-boot-starter-parent`,使用@@的时候就会报ScannerException异常 -->
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<!-- 开启过滤,用指定的参数替换directory下的文件中的参数 -->
<filtering>true</filtering>
</resource>
</resources>
</build>
pkg:
version: @pkgVersion@
time: @pkgTime@
author: listao
@Getter
@Setter
@ToString
@Component
@ConfigurationProperties(prefix = "pkg")
public class PkgInfo {
private String version;
private String time;
private String author;
}
@RestController
@RequestMapping("/ooxx")
public class OoxxCtl extends BaseController {
@Autowired
private PkgInfo pkgInfo;
@GetMapping("/pkgInfo}")
public R<PkgInfo> pkgInfo() {
return R.ok(pkgInfo);
}
}
/**
* spring security配置
*
* @author ruoyi
*/
@EnableMethodSecurity(prePostEnabled = true, securedEnabled = true)
@Configuration
public class SecurityConfig
{
@Bean
protected SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Exception
{
return httpSecurity
// CSRF禁用,因为不使用session
.csrf(csrf -> csrf.disable())
// 禁用HTTP响应标头
.headers((headersCustomizer) -> {
headersCustomizer.cacheControl(cache -> cache.disable()).frameOptions(options -> options.sameOrigin());
})
// 认证失败处理类
.exceptionHandling(exception -> exception.authenticationEntryPoint(unauthorizedHandler))
// 基于token,所以不需要session
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
// 注解标记允许匿名访问的url
.authorizeHttpRequests((requests) -> {
permitAllUrl.getUrls().forEach(url -> requests.antMatchers(url).permitAll());
// 对于登录login 注册register 验证码captchaImage 允许匿名访问
requests.antMatchers("/login", "/register", "/captchaImage", "/ooxxCtl/*").permitAll()
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
.antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated();
})
// 添加Logout filter
.logout(logout -> logout.logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler))
// 添加JWT filter
.addFilterBefore(authenticationTokenFilter, UsernamePasswordAuthenticationFilter.class)
// 添加CORS filter
.addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class)
.addFilterBefore(corsFilter, LogoutFilter.class)
.build();
}
}
2. messages.properties
- 切换:
Default encoding for properties files:
UFT-8