Re: [hibernate-dev] Hibernate ORM modules published as major.minor and an alias for main

2015-01-16 Thread Sanne Grinovero
On 15 January 2015 at 16:01, Emmanuel Bernard wrote: > > On 15 Jan 2015, at 16:54, Scott Marlow wrote: > > > The part that I am unsure about is including the micro version in the module > path, which means that every release of WildFly that includes an upgraded > Hibernate, will likely have the j

Re: [hibernate-dev] Hibernate ORM modules published as major.minor and an alias for main

2015-01-16 Thread Emmanuel Bernard
> On 16 Jan 2015, at 13:58, Sanne Grinovero wrote: > > On 15 January 2015 at 16:01, Emmanuel Bernard > wrote: >> >> On 15 Jan 2015, at 16:54, Scott Marlow wrote: >> >> >> The part that I am unsure about is including the micro version in the module >> path, whi

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Emmanuel Bernard
Hey, First off thanks for working on this. This is quite a tedious topic and it’s easy to make a mess out of it. Been there, done that ;P The real test is to make sure we can implement: - the existing default strategy - the existing JPA strategy - the various NamingStrategy implementations we h

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Steve Ebersole
On Fri, Jan 16, 2015 at 7:32 AM, Emmanuel Bernard wrote: > Hey, > > First off thanks for working on this. This is quite a tedious topic and > it’s easy to make a mess out of it. Been there, done that ;P > > The real test is to make sure we can implement: > > - the existing default strategy > - th

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Steve Ebersole
On Fri, Jan 16, 2015 at 8:10 AM, Steve Ebersole wrote: > > Also, I’ve been toying with the idea of naming strategy AOP: >> - ability to lowercase all columns >> - ability to replace . with _ >> - ability to replace $ with something else >> - etc >> >> but I don’t see a good way to do this that wou

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Steve Ebersole
On Fri, Jan 16, 2015 at 8:10 AM, Steve Ebersole wrote: > > >> I have one question, regarding logical name. The name that a given user >> needs to use inside say @Column( …, table=“SomeEntity1”) is the name that >> comes out of the implicit naming contract (assuming the original table was >> implic

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Emmanuel Bernard
> On 16 Jan 2015, at 18:37, Steve Ebersole wrote: > > On Fri, Jan 16, 2015 at 8:10 AM, Steve Ebersole > wrote: > > I have one question, regarding logical name. The name that a given user needs > to use inside say @Column( …, table=“SomeEntity1”) is the name that co

Re: [hibernate-dev] Naming and "naming strategies"

2015-01-16 Thread Steve Ebersole
In my opinion, this blend of implicit naming and explicit naming is just asking for problems. But to answer your specific question, yes.. altering the naming stratagies used could conceivably mess up cross referencing in cases like this. On Jan 16, 2015 12:09 PM, "Emmanuel Bernard" wrote: > > On