24.12.31 SpringBootDay02

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface SaveLog {
}

@Component
@Aspect
public class LogAspect {

    @Resource
    HttpSession session;
    @Resource
    SystemLogService logService;

    @Around("@annotation(com.javasm.bootdemo.common.interfaces.SaveLog)")
    public Object aroundMethod(ProceedingJoinPoint joinPoint) throws Throwable {
        Object proceed = joinPoint.proceed();
        //获取用户信息
        Object user = session.getAttribute("user");
        Integer uid = -1;
        if (user != null){
            WebUser webUser = (WebUser) user;
            uid = webUser.getUid();
        }
        //获取类名
        String className = joinPoint.getTarget().getClass().getName();
        //方法名
        String methodName = joinPoint.getSignature().getName();
        //参数
        Object[] args = joinPoint.getArgs();
        String argsString = Arrays.toString(args);
        //组装参数
        SystemLog systemLog = new SystemLog(uid,className,methodName,argsString);
        logService.insert(systemLog);
        return proceed;
    }
}

事务

开启事务

@EnableTransactionManagement//开启事务

需要开启事务的方法上
@Transactional

事务是否生效,完全看是否抛出异常
    看方法是否向spring抛出异常
  • 在调用的一方,添加@Transactional
    • 事务生效了
  • 在被调用的一方,
    • 事务没有生效
  • 使用try...catch捕获异常,并打印,导致事务失效

Spring的事务机制,是看调用的方法,是否抛出异常

不要在每一个方法上都加@Transactional

只有多表调用的时候,才建议使用事务

跨域

@Configuration
public class CorsConfig {

    @Bean
    public CorsFilter corsFilter(){
        //预先的配置
        UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
        //所有的请求,都要过滤,都添加跨域
        source.registerCorsConfiguration("/**",buildConfig());
        return new CorsFilter(source);
    }
    private CorsConfiguration buildConfig(){
        CorsConfiguration config = new CorsConfiguration();
        //配置 允许所有的作用域
        config.addAllowedOrigin("*");
        //头信息
        config.addAllowedHeader("*");
        //方法
        config.addAllowedMethod("*");
        //cookie,session会失效
        config.setAllowCredentials(true);
        //有效期
        config.setMaxAge(3600L);

        return config;
    }
}
相关推荐
霜雪殇璃21 分钟前
2025.01.02(数据库)
笔记·学习
Wang Niewei42 分钟前
将simpletex 识别的公式 复制到ppt 中
笔记·powerpoint
qq_工控_小白2 小时前
eplan如何导出可跳转的PDF
笔记·pdf·eplan
1101 11014 小时前
STM32-笔记33-Wi-Fi遥控风扇项目
笔记
半导体守望者5 小时前
AE Pinnacle 10x6 kW DeviceNet MDXL User r Manual
经验分享·笔记·功能测试·自动化·制造
egoist20235 小时前
数据结构之单链表(超详解)
c语言·开发语言·数据结构·笔记·学习·链表·gitee
安冬的码畜日常6 小时前
【Vim Masterclass 笔记01】Section 1:Course Overview + Section 2:Vim Quickstart
笔记·vim
Spcarrydoinb7 小时前
python学习笔记—12—布尔类型、if语句
笔记·python·学习
go_bai7 小时前
OJ随机链表的复制题目分析
数据结构·经验分享·笔记·链表·学习方法
你好,赵志伟8 小时前
线性代数考研笔记
笔记·线性代数·考研