MVC テンプレートを使用して Spring MVC プロジェクトを作成しましたが、テキスト入力から値を取得できません。誰も私にそれを行う方法をアドバイスできますか? プロジェクトの構造を含む home.jsp のソースは、以下のスクリーンショットで確認できます。AdminController クラスのコードは次のとおりです。
@Controller
@RequestMapping(value = "/foo")
public class AdminController {
@RequestMapping(value = "/bar")
public String testAction(@RequestParam String fieldName) {
// yourValue contain the value post from the html form
return "yourview";
}
}
プロジェクトをデプロイすると、アドレスで開始されますhttp://localhost:8080/test/
。どこで別のものに変更/test/
しますか?そして、送信ボタンを押した後、ブラウザは転送しhttp://localhost:8080/foo/bar
て表示しますHTTP status 404