「Spring入門」@RequestParamでパラメータを取得するサンプル
Javaコード:
@RequestMapping(“/admin/employee/manage")
public List<UserInoBean> selectByUid(@RequestParam(“userId") String userId) throws SQLException {
//some code
}
APIのアクセスURL:
xxxx/admin/employee/manage?userId=xx