Project - Build Automatically 해제
톰캣 서버 자동 재실행 막기
2016. 6. 13. 10:15
[실패] 프레임워크 파라미터 배열로 보내기 ... 하나의 배열은 되었고 여러가지 시도 해봄 ...
2016. 6. 13. 09:46
You can use this:
@RequestMapping(value="/schedule", method = RequestMethod.POST)
public void action(@RequestParam(value = "param[]") String[] paramValues){...}
it will retrieve all values (inside array paramValues
) of parameter param
(note the attribute value
of RequestParam
: it end with []
)
error 아래꺼
public void action(@RequestParam(value = "param[]") String[] paramValues ,
@RequestParam(value = "param2[]") String[] paramValues2){...}
input type="text" 글 작성 불가
2016. 4. 7. 10:58
readonly = "readonly" 로 막거나
style diabled="disabled" 로 주면 된다.