YoungsFunction 클래스에 아래와같은 함수가 작성되었을때 해당 함수를 사용하는 방법이다.
public class YoungsFunction {
/**
* List<?> 형식을 JsonObject로 변경해준다.
* @param resultList
* @return
*/
public JsonObject listToJson(List<?> resultList)
{
HashMap<String, Object> returnHashMapValue = new HashMap<String, Object>();
JsonObject returnValue = new JsonObject();
returnHashMapValue.put("RESULT_LIST", resultList);
returnValue.addProperty("returnValue", returnHashMapValue.toString());
return returnValue;
}
}
import main.java.com.common.YoungsFunction; // 이처럼 임포트를 해줘야한다.
class()
{
YoungsFunction function = new YoungsFunction(); // YoungsFunction 객체를 새로 생성해준다
function.listToJson(resultList); // 이제 위에서 생성한 변수명을 이용해 YoungsFunction의 함수를 사용할수있다.
}
'프로그래밍 > Java' 카테고리의 다른 글
[Tomcat] 404에러 해결법 (0) | 2021.12.21 |
---|---|
HttpSession의 주요 메서드 (0) | 2021.12.14 |
이클립스 STS가 Eclipse Marketplace에서 조회가 안될때 (0) | 2021.11.26 |
이클립스 플러그인 수동설치 (0) | 2021.11.25 |
[Java] String 값 ',' 기준으로 잘라서 List에 넣기 (0) | 2021.11.23 |
댓글