SpringBoot爬坑記錄

2021-10-01 17:12:48 字數 1553 閱讀 7775

transactional事務回滾

//方法上增加註解

@transactional(rollbackon = exception.class)

public void example() catch (exception e)

}

配置類序列化失敗

問題描述:

將配置類使用 jackson 序列化時,出現序列化異常
springboot請求跨域

package com.learnning.config;

import org.springframework.context.annotation.bean;

import org.springframework.context.annotation.configuration;

import org.springframework.web.cors.corsconfiguration;

import org.springframework.web.cors.urlbasedcorsconfigurationsource;

import org.springframework.web.filter.corsfilter;

/** *

* @classname: customcorsconfiguration

* @description: 配置跨域請求訪問失敗的問題

* @author time

* @date 2018/11/21

*/@configuration

public class customcorsconfiguration

@bean

public corsfilter corsfilter()

}

springboot jpa查詢傳參

使用佔位符?

@query(value = "select account_id,user_name,validity from t_account where account_id = ?", nativequery = true)

user findbyaccount_id(long account_id);

使用命名化引數:name

@query(value = "select account_id,user_name,validity from t_account where account_id =:id", nativequery = true)

user findbyaccount_id(@param("id") long account_id);

springboot爬坑之路

modelattribute name taco public taco taco enableautoconfiguration spring通常建議我們將main方法所在的類放到乙個root包下,enableautoconfiguration 開啟自動配置 註解通常都放到main所在類的上面,這...

爬坑 自用記錄

mysql爬坑 在儲存過程中,想在concat中使用select into,into後的變數要只用帶 符號的,參考如下 begin declare totalcountsql varchar 500 set totalcountsql select count 1 into totalrecord ...

QT爬坑記錄

2020 8 28 二 編譯提示 error undefined reference to xx 看看建構函式是否為私有,如果為私有,格式為 類名 三 qt編譯出來的exe並不能直接使用 配置了環境變數除外 一般會缺少依賴的dll。解決方案 1 在開始選單下找到對應的qt for desktop 使...