* 두번이나 당해서 정리를 해둬야겠다..

화면에서 파라메터로 넘오어오는 String형은 비교문시 안되면 trim() 으로 잘라주자.....



// equals(비교)

if("감사합니다.".equals(param.getContents_type().trim())){


}


// 값이 없지 않을때.

if(!"".equals(resultVo.getProduction_language().trim())  && !"null".equals(resultVo.getProduction_language())){

productLanguage = channelManageService.getProductLanguage(resultVo);

}

+ Recent posts