[EMAIL PROTECTED] wrote:
> Another thing that might be an issue is 2 M-N relationships I
> have. 1 is a: M (String) -> N (String)
> ...
>      * @weblogic.column-map
>      *      foreign-key-column="bankAccountPK"
> (1)  *      key-column="guarantorPK"
>      *
>      * @weblogic.target-column-map
>      *      foreign-key-column="guarantorPK"
> (2)  *      key-column="bankAccountPK"

These look to be backwards. Try swapping (1) and (2). You're basically
specifying two 1:N relationships.

> When I save this to the Entities, I get this in my table:
> 
> T_ICE_GUARANTORACCOUNT_REL
> =============================
> guarantorPK  ||| bankAccountPK
> -----------------------------
> BankAccStrng ||| Guarstring
> =============================

And this pretty much confirms it.

To avoid confusion (and if you are creating the schema from scratch),
you might want to name your FKs differently from the PKs.

Regarding the other issue, can you post your table DDL for the
CreditApplication and one or two of the associated beans? It will make
it easier to continue the discussions. Did you find anything funky with
the JDBC logs? BTW, can you remind me again what version of WebLogic and
database you're using?

David Harkness
Sr. Software Engineer
Sony Pictures Digital Networks
(310) 482-4756


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to