колонка заказа не работает - PullRequest
1 голос
/ 21 февраля 2012

Я определил свои привязки следующим образом

 <jaxb:bindings node="xs:complexType[@name='Parent']">
   ...........
  <jaxb:bindings node="xs:element[@name='children']">
        <hj:one-to-many name="children" fetch="EAGER">
           <orm:order-column name="CHILD_PRIMARY_KEY"/>
            <orm:join-column name="PARENT_PRIMARY_KEY"/>
        </hj:one-to-many>
  </jaxb:bindings>
</jaxb:bindings>

But the generated class has OrderColumn annotation missing.

i.e
@OneToMany(targetEntity = Children.class, cascade = {
        CascadeType.ALL
    }, fetch = FetchType.EAGER)
    @JoinColumn(name = "PARENT_PRIMARY_KEY")
    public List<Children> getChildren() {
        if (Childrens== null) {
            childrens= new ArrayList<Children>();
        }
        return this.childrens;
    } 

Я ожидаю аннотацию OrderColumn с OneToMany и JoinColumn.Но, похоже, его там нет, кто-нибудь может помочь, если я что-то здесь упускаю?

1 Ответ

0 голосов
/ 11 мая 2012

Вы должны переместить org\jvnet\hyperjaxb3\ejb\plugin\custom\applicationContext.xml на org\jvnet\hyperjaxb3\ejb\jpa2\plugin\custom\applicationContext.xml.

...