Return-Path: Delivered-To: apmail-ibatis-dev-archive@www.apache.org Received: (qmail 68190 invoked from network); 16 Jun 2009 14:50:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Jun 2009 14:50:56 -0000 Received: (qmail 96969 invoked by uid 500); 16 Jun 2009 14:35:32 -0000 Delivered-To: apmail-ibatis-dev-archive@ibatis.apache.org Received: (qmail 96961 invoked by uid 500); 16 Jun 2009 14:35:31 -0000 Mailing-List: contact dev-help@ibatis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ibatis.apache.org Delivered-To: mailing list dev@ibatis.apache.org Received: (qmail 96953 invoked by uid 99); 16 Jun 2009 14:35:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 14:35:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2009 14:35:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5FE22234C044 for ; Tue, 16 Jun 2009 07:35:07 -0700 (PDT) Message-ID: <1638890723.1245162907371.JavaMail.jira@brutus> Date: Tue, 16 Jun 2009 07:35:07 -0700 (PDT) From: "Erik van Oosten (JIRA)" To: dev@ibatis.apache.org Subject: [jira] Created: (IBATIS-609) ibator does not support generics in javaType attribute MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org ibator does not support generics in javaType attribute ------------------------------------------------------ Key: IBATIS-609 URL: https://issues.apache.org/jira/browse/IBATIS-609 Project: iBatis for Java Issue Type: Bug Components: Tools Reporter: Erik van Oosten I tried to define a Set, however ibator seems to mangle the javatype. For example the following definition: ....
Leads to the following generated code: class User { private com.example.UserRole> roles; } expected was: class User { private java.util.Set roles; } Tested with ibator 1.2.2-SNAPSHOT of around 2009-06-16. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.