2017-02-27 4 views
0

"lastModified"를 millisecond로 변환해야합니다. 일반적으로 Date() 형식입니다.하지만 밀리 초로 보내야합니다. jsp 또는 내 컨트롤러에서 경로 변수를 변경할 수 있습니까? 아니면 다른 방법을 제안 할 수 있습니다.Spring 폼 태그 경로 값을 변경하십시오.

enter image description here

enter image description here

+0

주 조직 모델 클래스와 컨트롤러 방법 :

public class Organization { -------------- -------------- @Transient private long lastModifiedMili; public long getLastModifiedMili() { return lastModified.getTime(); } public void setLastModifiedMili(long lastModifiedMili) { this.lastModifiedMili = lastModifiedMili; this.lastModified = new Date(lastModifiedMili); } public Organization(Long id, String name, String address, long lastModifiedMili) { this.id = id; this.name=name; this.address = address; this.lastModifiedMili = lastModifiedMili; this.lastModified = new Date(lastModifiedMili); } } 

그리고 양식 사용이 내부

. – mhshimul

+0

여기 있습니다. 편집했습니다. 이제 모델 클래스와 컨트롤러 메소드를 볼 수 있습니다. –

+0

여러분은 항상 스크린 샷 대신 실제 코드를 게시해야 솔루션을 더 빨리 제공 할 수 있습니다. – mhshimul

답변

0

당신은 과도 긴 필드를 추가하고 조직 엔티티 클래스 내부에 아래와 같이 사용할 수 있습니다

enter image description here

enter image description here

.

<form:hidden path="lastModifiedMili" />