記錄一些註解

2021-09-29 18:44:57 字數 428 閱讀 8378

可獲取?name="sss"這種?後面的引數值,該註解有兩個屬性: value、required

value可設定別名@requestparam(value="lid") integer id), required用來指示引數是否必須繫結

路徑變數,引數值需要在url進行佔位,如

public string edit( @pathvariable long id,@pathvariable string name)

用於驗證註解是否符合要求,直接加在變數之前,在變數中新增驗證資訊的要求,當不符合要求時就會在方法中返回message 的錯誤提示資訊。

@notblank(message = "不能為空")

private string id;

自動裝配 bytype

自動裝配 byname

記錄一些註解的含義

suppresswarnings rawtypes 忽略指定的警告 rawtypes是說傳參時也要傳遞帶泛型的引數 postconstruct 用來修飾乙個非靜態的void 方法 被 postconstruct修飾的方法會在伺服器載入servle的時候執行,並且只會被伺服器執行一次。postcons...

spring的一些註解

spring的一些註解 要使用spring註解首先肯定要用scanner,spring配置檔案中要有 其中com.neu就是要掃瞄的包 但是必須有下面的xmlns context以及最後3個schema xmlns xsi xmlns context xsi schemalocation sprin...

SpringBoot的一些註解

component 作用在類上,將物件交給容器管理 propertysource classpath book.properties 在類上引入其他配置 configurationproperties prefix book 類安全的屬性注入,指定配置字首 value 將屬性注入物件中 1.使用sp...