spring restful的一些個人總結

2021-08-15 13:07:37 字數 667 閱讀 3049

額,好像就乙個

使用@pathvariable接收引數,引數值需要在url進行佔位,前端傳參的url:

url = 「$/main/mm/am/edit/$/$」

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

並且@pathvariable引數不能為空,只要選擇接受就不能沒有這個引數,否則前台會找不到相應的方法

value:     指定請求的實際位址,指定的位址可以是uri template 模式(後面將會說明);

method:  指定請求的method型別, get、post、put、delete等;

produces:    指定返回的內容型別,僅當request請求頭中的(accept)型別中包含該指定型別才返回;

params: 指定request中必須包含某些引數值是,才讓該方法處理。

headers: 指定request中必須包含某些指定的header值,才能讓該方法處理請求。

(value=)  

@responsebody

public

string url()   

這樣寫就好了

Denoise auto encoder的乙個理解

這幾天反覆的看denoise auto encoder的解釋,尤其是geometric interpretation。作者寫道,本來的資料假定是在乙個低緯度的流行結構上,加了噪音之後,這些噪音點就距離這個流行結構要有點遠,或者不在這個流行結構上了,那麼學習的過程就會去學習在這個本來的流行結構。個人認...

erlang lists keyfind的乙個小坑

key 2 2,findreuslt lists keyfind key,1,case findreuslt of find false not find end.這段 會報沒有匹配的錯誤 原因是 key 2 2 其實 key被賦值為1.0 摔,這個基礎概念都能忘記 lists keyfind 文件...

WM DRAWITEM,DrawItem的一些總結

1 當在mfc中要對某個控制項自繪時,就需要重寫drawitem或者ondrawitem函式,要實現重繪 首先要允許重繪 1 可以在控制項屬性中設定 網上很多,自己搜吧 2 在控制項類中實現,比如我實現了class cmybutton public cbutton自己的按鈕類,然後在cmybutto...