springboot郵件任務

2021-10-01 10:20:28 字數 487 閱讀 8534

新增依賴

org.springframework.boot

spring-boot-starter-mail

# 設定郵箱主機

spring.mail.host=smtp.qq.com

# 設定使用者名稱

spring.mail.username=******@qq.com

# 設定密碼,該處的密碼是qq郵箱開啟smtp的授權碼而非qq密碼

spring.mail.password=*********x

測試

public

class

//傳送複雜郵件(攜帶檔案,開啟html)

@test

public

void

test02()

throws exception

}

參考文章

SpringBoot非同步任務 郵件 定時任務

enableasync public static void main string args 2.在方法上加入註解 async 1.匯入依賴 org.springframework.boot spring boot starter mail spring.mail.username x2qq.co...

SpringBoot之 非同步 定時 郵件任務

2 測試步驟 三 郵件任務 參考資訊 我們在 上傳送郵件,後台在傳送郵件時由於時間過長導致前端響應不動,直到郵件傳送完畢前端才可以響應。對於這種任務,可以採用非同步的方式進行處理。1 建立service包 2 在包中建立乙個asyncservice類,編寫相關方法並在方法上新增 async註解,告訴...

八 SpringBoot之任務(非同步,定時,郵件)

在service中寫乙個方法 告訴spring這是乙個非同步方法 async public void hello catch interruptedexception e system.out.println 處理資料中.在controller層呼叫並跳轉頁面 autowired asyncserv...