블로그 이미지

calendar

1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
  • total
  • today
  • yesterday
2017. 6. 29. 11:12 JAVA언어
java mail 전송 (javamail.jar ver 1.5.6)
javax.mail.jar
posted by 천상의날개
2017. 6. 8. 19:48 linux(ubuntu)

sudo apt-get install rdate

sudo rdate -s time.bora.net

sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime



startup.sh 파일 맨 위에 아래 내용을 추가

export CATALINA_OPTS=-Duser.timezone=GMT+09:00

posted by 천상의날개
2016. 12. 20. 15:34 JAVA오픈소스/Spring

public String test(HttpServletRequest request, Model model, @RequestParam MultiValueMap<String, Object> multiParams){

List<Object> ischks = multiParams.get("ischk");
for(int i=0; i < ischks.size() ; i++){

String testCd = multiParams.get("test_cd").get(i);

}

}

posted by 천상의날개