關於uri的一點小疑惑

2021-07-10 20:27:45 字數 713 閱讀 9862

簡單的框架

在後台中的controller如此設定

system.out.println("+++++++++++++++++++++hello");

return "hello";

}頁面hello.html中

this is a test  hello view

當執行該專案預設顯示該頁面,http://localhost:8080/testspring/

此時在該頁面的輸入框中輸入乙個字串aaaaa 並提交,在controller01中put方法會處理該請求,後台列印aaaaa,頁面跳轉至index.html,uri為http://localhost:8080/testspring/user/2?username=aaaaa

@controller

public class controller01

輸入http://localhost:8080/testspring/mvc/hello  這個uri也會顯示hello.html頁面,此時再在輸入框中輸入字串aaaaa的話,報錯

uri變成了http://localhost:8080/testspring/mvc/user/2?username=aaaaa

不知道這是為什麼,為什麼uri不會預設到專案位址http://localhost:8080/testspring,而是預設到上一級的位址http://localhost:8080/testspring/mvc?

一點疑惑的解釋

之前一直記不住,哪些東西該寫到views.py中,哪些應該寫到 login.html 模板中。因為使用者發過來的資料都封裝在request中了。所以如果想獲取使用者資料,必須在views.py中用相應的方法。如下 request.method request.post.get request.get...

關於C CLI的一點小總結

最近在給c 動態庫包皮 知識是嚴肅的,莫笑,hia,hia,hia 給c 的人用。扒了別人的部落格,節選一點貼出來,忘了從 扒的了,後期慢慢補,先厚顏定為原創吧。宣告,總結的部分不是原創。總結 有c 及c 背景的人使用c cli的必備知識 1,c cli裡的new等於c 裡的new,gcnew等於c...

關於pysot的一點小坑!

最近在看目標跟蹤方面的 發現效果比較好的cnn也就是siamese系列的演算法了,可喜的就是商湯開源的pysot,裡面實現了siamrpn 和siamesemask,可以訓練和測試,還可以測 benchmark 很全面!pysot的配置教程直接參考官網的install.md或者這篇部落格 坑來了 r...