パラメーターをコントローラーに渡したいときに少し問題があります。コントローラには1つの方法があります。
@RequestMapping("/redirect")
public String print(String type, HttpServletRequest servletRequest)
{
String path = "redirect:" + servletRequest.getParameter("type");
return path;
}
そして、jspファイルにいくつかのボタンがあります。
<form method="post" action="/WWP/redirect">
<button onclick=" <input type="text" name="type" value="/developer"/>">Developer</button>
<button onclick=<input type="text" name="type" value="/graphic"/>>Graphic</button>
<button onclick=" <input type="text" name="type" value="/cleaner"/>">Cleaner</button>
</form>
このように3つのボタンがあり、たとえば開発者ボタンを押すと、変数「type」は「/developer」になり、コントローラーに送信します。しかし今、私のボタンは次のようになっています:http: //imageshack.us/photo/my-images/854/buttonspx.png/
正しく動作しますが、このHTMLタグを削除できず、非常に緊張しています。これを行う方法?または、別の方法でコントローラーに値を送信する方法。前もって感謝します。