From: Markus M. M. (JIRA) <no...@at...> - 2006-04-03 06:46:29
|
RCP Plugin ----------- Key: HBX-635 URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 Project: Hibernate Tools Type: New Feature Components: eclipseplugin Environment: Eclipse Reporter: Markus M. May Priority: Minor I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: Max R. A. (JIRA) <no...@at...> - 2006-04-03 06:59:24
|
[ http://opensource.atlassian.com/projects/hibernate/browse/HBX-635?page=comments#action_22681 ] Max Rydahl Andersen commented on HBX-635: ----------------------------------------- unfortunately we can't solve all the problems because it is out of our control (read: Eclipse osgi classloading). We can provide a good default bundling and put in the proper tags in MANIFEST.MF, but the database issue we cannot help with since it would require us to bundle every possible jdbc driver ... that is something you would need to handle + you would need to mark you plugin as a "buddy" to the possible hibernate plugin. > RCP Plugin > ----------- > > Key: HBX-635 > URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 > Project: Hibernate Tools > Type: New Feature > Components: eclipseplugin > Environment: Eclipse > Reporter: Markus M. May > Priority: Minor > > > I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: Markus M. M. (JIRA) <no...@at...> - 2006-04-04 14:53:30
|
[ http://opensource.atlassian.com/projects/hibernate/browse/HBX-635?page=comments#action_22695 ] Markus M. May commented on HBX-635: ----------------------------------- This seems to be okay for me. One more thing would be to have a stripped hibernate-Plugin, where only the really needed JARs are included, so that the RCP-Application is pretty lean. > RCP Plugin > ----------- > > Key: HBX-635 > URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 > Project: Hibernate Tools > Type: New Feature > Components: eclipseplugin > Environment: Eclipse > Reporter: Markus M. May > Priority: Minor > > > I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: Max R. A. (JIRA) <no...@at...> - 2006-04-04 15:57:27
|
[ http://opensource.atlassian.com/projects/hibernate/browse/HBX-635?page=comments#action_22696 ] Max Rydahl Andersen commented on HBX-635: ----------------------------------------- well today org.hibernate.eclipse is very stripped down. only has some basic classes needed to manage and convince eclipse and DriverManager to load jdbc drivers. > RCP Plugin > ----------- > > Key: HBX-635 > URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 > Project: Hibernate Tools > Type: New Feature > Components: eclipseplugin > Environment: Eclipse > Reporter: Markus M. May > Priority: Minor > > > I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: Gregory G. (JIRA) <no...@at...> - 2006-06-11 19:16:32
|
[ http://opensource.atlassian.com/projects/hibernate/browse/HBX-635?page=comments#action_23314 ] Gregory Gerard commented on HBX-635: ------------------------------------ What about creating one org.hibernate.jdbc plugin and then either let it define an extension point so JDBC drivers can register with it and be enumerated. Or JDBC driver fragments. I think this would preven Hibernate from having to know everything in advance. > RCP Plugin > ----------- > > Key: HBX-635 > URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 > Project: Hibernate Tools > Type: New Feature > Components: eclipse > Environment: Eclipse > Reporter: Markus M. May > Priority: Minor > > > I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
From: Max R. A. (JIRA) <no...@at...> - 2006-06-11 19:31:36
|
[ http://opensource.atlassian.com/projects/hibernate/browse/HBX-635?page=comments#action_23315 ] Max Rydahl Andersen commented on HBX-635: ----------------------------------------- would require users to register drivers twice .... and it doesn't sound very userfriendly. (we should though try and hook into DTP/RDB driver registrations) > RCP Plugin > ----------- > > Key: HBX-635 > URL: http://opensource.atlassian.com/projects/hibernate/browse/HBX-635 > Project: Hibernate Tools > Type: New Feature > Components: eclipse > Environment: Eclipse > Reporter: Markus M. May > Priority: Minor > > > I am currently developing a RCP application using the Hibernate Plugins. Therefor I have had to extend the MANIFEST.MF so that hibernate could find my hibernate.cfg.xml. I would like to see an easier and much more user-friendly plugin for the development of RCP applications. This Plugin should just have all the needed dependencies and should allow to put the hibernate.cfg.xml into any other (new) plugin. Also the database libs should be found by the classloader of eclpse. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |