최대 절전 모드에서 문자열을 DB 시퀀스에 매핑하는 방법 제목에 거의 다 나와 있습니다.다음과 같은 수업이 있습니다. @Entity @Table(name="FOO") public class Foo { private String theId; @Id @Column(name = "FOO_ID") @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "fooIdSeq") @SequenceGenerator(name = "fooIdSeq", sequenceName = "SQ_FOO_ID", allocationSize = 10) public String getTheId() { return theId; } public String setTheId(String..