Re: [hibernate-dev] JPA Events

2018-03-20 Thread Petar Tahchiev
raised (even though as you can see in my query I am only updating the LAST_MODIFIED_ATTRIBUTE and no other field). Is this a bug? Why is PrecollectionUpdateEvent fired when I am only updating one field of type LocalDateTime? 2018-03-19 20:01 GMT+02:00 Petar Tahchiev : > Hi Steve, > > thank you

Re: [hibernate-dev] JPA Events

2018-03-19 Thread Petar Tahchiev
it would need to be a VERY compelling > reason to change this behavior in Hibernate. > > On Mon, Mar 19, 2018 at 9:55 AM Petar Tahchiev > wrote: > >> Hi guys, >> >> I opened an issue in the JPA spec here yesterday: >> >> https://github.com/javaee/jpa-

[hibernate-dev] JPA Events

2018-03-19 Thread Petar Tahchiev
Hi guys, I opened an issue in the JPA spec here yesterday: https://github.com/javaee/jpa-spec/issues/167 because @PreUpdate and @PrePersist events are not fired when I save a collection on the owner. Since then, a discussion with Oliver Gierke from the SpringDATA team started and I wanted to kno

Re: [hibernate-dev] Null-Pointer Exception with 5.2.14

2018-03-05 Thread Petar Tahchiev
can replicate it, please open a Jira issue and attach the test case > so that it's easier > to investigate the cause and provide a fix. > > Thanks, > Vlad > > On Thu, Mar 1, 2018 at 10:41 AM, Petar Tahchiev > wrote: > >> Hi Christian, >> >> My model

Re: [hibernate-dev] Null-Pointer Exception with 5.2.14

2018-03-01 Thread Petar Tahchiev
t; > Mit freundlichen Grüßen, > > *Christian Beikov* > Am 28.02.2018 um 20:11 schrieb Petar Tahchiev: > > Hi guys, > > I have this exception with latest 5.2.14 (my project runs fine with > 5.2.13): > > > > Caused by: javax.persistence.PersistenceException: [Per

[hibernate-dev] Null-Pointer Exception with 5.2.14

2018-02-28 Thread Petar Tahchiev
Hi guys, I have this exception with latest 5.2.14 (my project runs fine with 5.2.13): Caused by: javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.persistenceException(E

Re: [hibernate-dev] SchemaExport adds engine=MyISAM to all create table statements.

2017-04-02 Thread Petar Tahchiev
might > be that the Schema Exporter does not take that into consideration. > Please open an issue and provide a replicating tests case. > > Thanks, > Vlad > > On Sun, Apr 2, 2017 at 3:59 PM, Petar Tahchiev > wrote: > >> Hey guys, >> >> I've been

[hibernate-dev] SchemaExport adds engine=MyISAM to all create table statements.

2017-04-02 Thread Petar Tahchiev
Hey guys, I've been using Hibernate's SchemaExport tool (5.1.x) for a long time it has always created an sql script with create-table statements like this: create table abstract_modifiable_entity ( id bigint not null, code varchar(255) not null, created_by varchar(255)

Re: [hibernate-dev] HHH-11089

2017-02-18 Thread Petar Tahchiev
#x27;ll review it next week. > > Thanks, > Vlad > > On Thu, Feb 16, 2017 at 5:42 PM, Petar Tahchiev > wrote: > >> Hey guys, >> >> a while ago I opened this issue: >> >> https://hibernate.atlassian.net/browse/HHH-11089 >> >> which blo

[hibernate-dev] HHH-11089

2017-02-16 Thread Petar Tahchiev
Hey guys, a while ago I opened this issue: https://hibernate.atlassian.net/browse/HHH-11089 which blocks me from using Hibernate with Oracle database (the well-known issue with 30 chars limit for table/column/foreignkey/indexkey names). While I managed to workaround the tablename/columnname by s

[hibernate-dev] Pull request for HHH-11089

2016-09-21 Thread Petar Tahchiev
Hey guys, I just created a pull-request for HHH-11089: https://github.com/hibernate/hibernate-orm/pull/1564 However when I create the Identifier like this: Identifier.toIdentifier( keyName, true ); I always set quoted to true as I don't know where to get this value from. Can someone please ha

Re: [hibernate-dev] Cannot build branch 5.1

2016-09-21 Thread Petar Tahchiev
Yes, clean worked. Thank you Steve and sorry about the noise - I'm not very familiar with gradle. 2016-09-21 17:28 GMT+03:00 Steve Ebersole : > Try a clean? > > > On Wed, Sep 21, 2016 at 9:23 AM Petar Tahchiev > wrote: > >> Yeah really strange - branch 5.0 and maste

Re: [hibernate-dev] Cannot build branch 5.1

2016-09-21 Thread Petar Tahchiev
Yeah really strange - branch 5.0 and master (5.2.3) I can build without a problem, but 5.1 shows that error. 2016-09-21 17:17 GMT+03:00 Steve Ebersole : > Strange. It is working in CI: http://ci.hibernate.org/ > view/ORM/job/hibernate-orm-5.1-h2/ > > > On Wed, Sep 21, 2016 a

[hibernate-dev] Cannot build branch 5.1

2016-09-21 Thread Petar Tahchiev
Hi guys, I'm trying to build the 5.1 branch with "./gradlew publishToMavenLocal" but I get the following error: :hibernate-ehcache:generatePomFileForMavenJavaPublication :hibernate-ehcache:compileJava Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation

[hibernate-dev] HHH-10770

2016-08-05 Thread Petar Tahchiev
Hi guys, https://hibernate.atlassian.net/browse/HHH-10770 has been fixed in Hibernate 5.2.0. However Hibernate 5.2.0 requires Java8 and there are a lot of projects out there that cannot upgrade to Java8 for now. Also This is one of the reasons Spring-boot still relies on Hibernate 5.0.9 for examp

[hibernate-dev] Collection was not processed by flush()

2016-06-05 Thread Petar Tahchiev
Hello, I'm using hibernate version 5.1.0.Final and spring-data-rest and I have a StockRepository which is exposed via rest and when I try to create a new stock entry I get the following exception: 2016-06-05 17:02:43,917 org.hibernate.AssertionFailure [http-nio-127.0.0.1-8112-exec-2] ERROR: HHH00

Re: [hibernate-dev] 6.0 planning

2016-04-01 Thread Petar Tahchiev
>>> thinking of modeling the org.hibernate.mapping representation of the > >>>> domain > >>>> hierarchy as more in-line with JPA terms. > >>>> > >>>> On Thu, Mar 31, 2016 at 7:43 AM Steve Ebersole > >>>> wrote: >

Re: [hibernate-dev] 6.0 planning

2016-03-31 Thread Petar Tahchiev
+1 on going java8. I'd also suggest adding support for javax.currency JSR354 2016-03-31 15:23 GMT+03:00 Vlad Mihalcea : > Hi, > > It makes sense to unify the core with hem in a single module. > > Currently, the flushing behavior differs if we execute a query through a > Session or through an Enti

Re: [hibernate-dev] JSR 354 - Money and Currency

2016-02-12 Thread Petar Tahchiev
Moneta does not require Java9. I'm using it in my project with java8. 2016-02-12 16:19 GMT+02:00 Petar Tahchiev : > +1 On this :) > > 2015-03-22 2:38 GMT+02:00 Steve Ebersole : > >> So it sounds like JSR 354 may not be included in Java 9. Do we still want >> to supp

Re: [hibernate-dev] JSR 354 - Money and Currency

2016-02-12 Thread Petar Tahchiev
+1 On this :) 2015-03-22 2:38 GMT+02:00 Steve Ebersole : > So it sounds like JSR 354 may not be included in Java 9. Do we still want > to support this for ORM 5? I am not sure if "moneta" requires Java 9... > ___ > hibernate-dev mailing list > hiberna

Re: [hibernate-dev] 5.1 tentative release date

2016-01-14 Thread Petar Tahchiev
ts JSR-107. > > That said, you can use EHcache 2 as well? It doesn't have to be > JSR-107 compliant to be used as Hibernate 2nd level cache, since the > integration with JSR-107 wan't released yet. > > Sanne > > On 14 January 2016 at 14:45, Petar Tahchiev wro

Re: [hibernate-dev] 5.1 tentative release date

2016-01-14 Thread Petar Tahchiev
>> On Mon, Jan 11, 2016 at 11:00 AM Steve Ebersole >> wrote: >> >>> Petar, Alex Snaps (in CC) has been doing some work to update the version >>> of Ehcache used in Hibernate ORM. Alex, any updates? As I understood it >>> though Ehcache 3.x was not pa

Re: [hibernate-dev] 5.1 tentative release date

2016-01-09 Thread Petar Tahchiev
Hello all, I just saw ehcache 3.0.Alpha is already out. Any chance to have the hibernate-ehcache module updated in 5.1? 2016-01-09 5:00 GMT+02:00 Scott Marlow : > I'll create a jira for the Javassist to be part of 5.1. > > Should we also look at changing Hibernate to not require Javassist > clas

Re: [hibernate-dev] javax.money

2016-01-03 Thread Petar Tahchiev
>> > > > > >> >> > > That would actually be my preference; If the javax.money types > > are > > >> >> > > present, enable the required Types etc. otherwise not. It's a > > >> >> > > pattern > > >> &

[hibernate-dev] javax.money

2015-12-21 Thread Petar Tahchiev
Hi guys, I've been playing lately with JSR 354 javax.money api ( http://javamoney.java.net) and I was wondering if there's any plans for hibernate to support this. Thanks. -- Regards, Petar! Karlovo, Bulgaria. --- Public PGP Key at: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x19658550C3

Re: [hibernate-dev] Filter activation

2015-11-13 Thread Petar Tahchiev
outcome (the initialization will not be filtered) will not be what > was probably intended. Filters were designed to be disabled by default and > only enable-able; so a change like this will challenge assumptions > throughout the code. > > Is this something you are volunteering to w

[hibernate-dev] Filter activation

2015-11-13 Thread Petar Tahchiev
Hello, here's a 6-year old issue: https://hibernate.atlassian.net/browse/HHH-3815 That suggests to add another attribute on the @Filter annotation (something like activeByDefault=true). Can we have your oppinion on it? -- Regards, Petar! Karlovo, Bulgaria. --- Public PGP Key at: http://pgp.mit.

[hibernate-dev] HHH-10099

2015-09-24 Thread Petar Tahchiev
Hello, can someone please confirm this is a bug: https://hibernate.atlassian.net/browse/HHH-10099 Or perhaps I'm doing something wrong? If it really is a bug, I'll spend some more days debugging to see what's happening, but if it's not I'd like to pointed why the order columns is not generated.

[hibernate-dev] Cache

2015-09-03 Thread Petar Tahchiev
Currently hibernate-ehcache depends on ehcache 2.4.3: http://repo1.maven.org/maven2/org/hibernate/hibernate-ehcache/5.0.0.Final/hibernate-ehcache-5.0.0.Final.pom which is more than 4 years old In the meantime there has been 22 releases on the 2.x version and currently a 3.0.0.m2 on the 3.x ve

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-15 Thread Petar Tahchiev
: > >> So you're original test was using JPA? See this illustrates why it's >> best to isolate tests down to SSCCE. >> >> I will try again with JPA specifically. >> On May 14, 2015 11:30 AM, "Petar Tahchiev" wrote: >> >>> Hi S

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-14 Thread Petar Tahchiev
ira. Until you can >> simplify this to happen with just Hibernate in the picture. >> >> On Wed, May 13, 2015 at 12:59 PM, Petar Tahchiev >> wrote: >> >>> Any luck on reproducing this? >>> >>> 2015-05-05 16:17 GMT+03:00 Steve Ebersole : >&g

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-13 Thread Petar Tahchiev
> > On Tue, May 5, 2015 at 3:19 AM, Petar Tahchiev > wrote: > >> Any of you have seen this issue? Shall I open a ticket? >> >> 2015-05-04 0:03 GMT+03:00 Petar Tahchiev : >> >> > Hi guys, >> > >> > I finally managed to reproduce it -

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-05 Thread Petar Tahchiev
Any of you have seen this issue? Shall I open a ticket? 2015-05-04 0:03 GMT+03:00 Petar Tahchiev : > Hi guys, > > I finally managed to reproduce it - here's a small application that will > generate the provided exception: > > https://github.com/paranoiabla/hibernate-hsql-

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-03 Thread Petar Tahchiev
If I remove it or remove the collection of payment infos that is inside of it, it all starts to work fine. Please have a look and thanks a lot for your efforts :) 2015-05-03 1:13 GMT+03:00 Petar Tahchiev : > Hi guys, > > I just tried hibernate 5.0 beta2 and here's my observations.

[hibernate-dev] Trying Hibernate 5.0.0.Beta2

2015-05-02 Thread Petar Tahchiev
Hi guys, I just tried hibernate 5.0 beta2 and here's my observations. First of all the foreign key problems I had before seems to be resolved, however I see the following error when executing tests with HSQL: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-06 Thread Petar Tahchiev
ailure is an attempt to create the index you >> specified in the mappings. Hibernate is trying to create the index, but >> for your database it is generating the name to use in the CREATE INDEX >> command incorrectly (this is the bug): >> >> 09:34:08,484 ERROR SchemaExpor

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-06 Thread Petar Tahchiev
or you? > > > On Mon, Apr 6, 2015 at 6:34 AM, Steve Ebersole > wrote: > >> Because compiling told me that none of the 5.0 bootstrapping >> packages/classes could be found. >> >> Anyway, I am working on simplifying your demo thing into something >> simpl

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-06 Thread Petar Tahchiev
tionImpl that says how the >>> tableInformationMap >>> is not used, and why :) >>> >>> The problem is the HHH000262 log statement. That is saying that the >>> tables are not found querying the database metadata. >>> >>> On Mon, Apr 6, 201

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-06 Thread Petar Tahchiev
15-04-06 9:34 GMT+03:00 Petar Tahchiev : > Just a quick follow-up here: SchemaMigratorImpl:125 is calling > existingDatabase.getTableInformation where existingDatabase is of type > org.hibernate.tool.schema.extract.internal.*legacy*.DatabaseInformationImpl > (I have no idea why is it

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-05 Thread Petar Tahchiev
om there. > > On Sun, Apr 5, 2015 at 3:02 AM, Petar Tahchiev > wrote: > >> Hi Steve, >> >> the test project that I created still fails with the latest SNAPSHOT >> release, although the foreign keys are not created. Can you please >> investigate if that is

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-05 Thread Petar Tahchiev
oblem there > is > >>>>>>>> that, > >>>>>>>>> afaik, there is no way to tell Gradle's AntBuilder to use a JDK > >>>>>>>> other than > >>>>>>>>> the one that l

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-02 Thread Petar Tahchiev
Petar, when you get a chance pull and give that a try wrt ForeignKeys > > On Thu, Apr 2, 2015 at 2:06 PM, Steve Ebersole > wrote: > >> I am working on it as we speak :) >> >> On Thu, Apr 2, 2015 at 2:05 PM, Petar Tahchiev >> wrote: >> >>> Cool, &g

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-02 Thread Petar Tahchiev
y" at best: > https://hibernate.atlassian.net/browse/HHH-9709 > > On Wed, Apr 1, 2015 at 8:02 AM, Petar Tahchiev > wrote: > >> >> OK, maybe I'm doing something wrong. I also tried setting the foreign key >> name to "none" like this:

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-01 Thread Petar Tahchiev
time being you can use this as well from >>> annotations; just name the FK "none". >>> >>> If you can write some tests for this, it will make it easier for me to >>> implement. >>> >>> >>> >>> On Wed, Apr 1, 2015

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-01 Thread Petar Tahchiev
rather than leaving the choice to the build tool. > > The TRACE problem was not expected of course. May I assume you have > the TRACE level enabled? > > Thanks, > Sanne > > On 1 April 2015 at 11:32, Petar Tahchiev wrote: > > One other thing I noticed: > > hi

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-01 Thread Petar Tahchiev
39i3 foreign key (entity_pk) references simple_cms_widget (pk); The foreign keys are all different (in Hibernate 4.3.x they were the same), but I just don't want them. Shall I reopen the issue? 2015-04-01 13:32 GMT+03:00 Petar Tahchiev : > One other thing I noticed: >

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-04-01 Thread Petar Tahchiev
t; Java 7. > > >> > > > >> > > > >> > I had missed that part. > > >> > > > >> > > > >> > On Tue, Mar 31, 2015 at 6:34 PM, Steve Ebersole < > st...@hibernate.org> > > >> wrote: > > &g

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
gt; When I say "internal" here, I mean internal to java classes. >> >> >> >> On Tue, Mar 31, 2015 at 6:30 PM, Steve Ebersole >> >> wrote: >> >> >> >>> Nope. It just effects any code compiled with Java 8 even though the

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
.NoSuchMethodError: java.util.concurrent. >> ConcurrentHashMap.keySet()Ljava/util/concurrent/ >> ConcurrentHashMap$KeySetView; >> >> is indicative of an issue in cross-jre support due to a change internal >> to java classes. >> >> >> On Tue, Mar 31, 201

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
)Ljava/util/concurrent/ > ConcurrentHashMap$KeySetView; > > is indicative of an issue in cross-jre support due to a change internal to > java classes. > > > On Tue, Mar 31, 2015 at 6:03 PM, Petar Tahchiev > wrote: > >> Thanks Steve, >> >> I managed to migrate my c

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
! I have noticed that occasionally too wrt > HHH72, but have been so heads down trying to get ready for the 5.0.0 > Beta release that I have not yet had time to look closer. I will get to it. > > On Tue, Mar 31, 2015 at 6:13 PM, Petar Tahchiev > wrote: > >> BTW, >> &g

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
nd seems like a false positive: `WARN o.h.b.i.InFlightMetadataCollectorImpl - HHH72: Duplicate joins for class: ...`. Note that I get this warning even for entities that have no association at all with any other entity. - 2015-04-01 2:03 GMT+03:00 Petar Tahchiev : > Thanks St

Re: [hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
ing apis, see >>> http://docs.jboss.org/hibernate/orm/5.0/topical/html/bootstrap/NativeBootstrapping.html >>> and >>> http://docs.jboss.org/hibernate/orm/5.0/topical/html/bootstrap/LegacyBootstrapping.html >>> >>> On Tue, Mar 31, 2015 at

[hibernate-dev] Trying Hibernate 5.0.0.Beta1

2015-03-31 Thread Petar Tahchiev
Hi guys, I just tried the latest beta and I cannot compile my project. With the latest hibernate 4.3.X I was able to do this: --- final org.hibernate.cfg.Configuration configuration = getHibernateConfiguration(); configuration.buildMappings(); final SchemaUpdate schemaU

Re: [hibernate-dev] Hibernate ORM 5.0.0.Beta1 release

2015-03-31 Thread Petar Tahchiev
Which maven repo is it in? 2015-04-01 0:08 GMT+03:00 Steve Ebersole : > Just released 5.0.0.Beta1 : > http://in.relation.to/Bloggers/HibernateORM500Beta1Release > ___ > hibernate-dev mailing list > hibernate-dev@lists.jboss.org > https://lists.jboss.org

Re: [hibernate-dev] Preparing to release 4.3.8 and 4.2.17

2015-02-12 Thread Petar Tahchiev
Any updated on this? Will it be included in the next release? 2015-01-06 14:06 GMT+02:00 Petar Tahchiev : > Thank you all, > > I'm using now the codestyles that were attached in the wiki and this time > I think it looks better. Here's the new pull-request > >

Re: [hibernate-dev] Preparing to release 4.3.8 and 4.2.17

2015-01-06 Thread Petar Tahchiev
he contributor's agreement? > https://cla.jboss.org -> pick "Hibernate" in the drop down menu. > > Thanks for your help! > > Sanne > > On 6 January 2015 at 09:50, Petar Tahchiev wrote: > > Hi Gail, > > > > can you point me to the Hibernate code f

Re: [hibernate-dev] Preparing to release 4.3.8 and 4.2.17

2015-01-06 Thread Petar Tahchiev
I can't tell what exactly you changed. Please recreate the pull > request without changing tabs to spaces. > > I'm sorry, this will not make it into 4.3.8. I'll consider it for 4.3.9. > > Regards, > Gail > > - Original Message - > > From: &

Re: [hibernate-dev] Preparing to release 4.3.8 and 4.2.17

2015-01-06 Thread Petar Tahchiev
Any chance to get this included https://github.com/hibernate/hibernate-orm/pull/863 ? 2015-01-06 10:37 GMT+02:00 Gail Badner : > I've finished building and taggind for 4.2.17.Final. I'm getting some > final fixes in for 4.3.8.Final, then I'll release that version. I'll finish > these up on Tuesd

[hibernate-dev] Can I have some help with HHH-9306

2015-01-05 Thread Petar Tahchiev
Hello everyone, and a happy new year :) I'm having troubles with this issue: https://hibernate.atlassian.net/browse/HHH-9306 and I have also created a pull-request for it: https://github.com/hibernate/hibernate-orm/pull/863 However, I'm not 100% sure if this is the correct way to fix it. Can s

Re: [hibernate-dev] JCS Hibernate Region Factory

2014-08-20 Thread Petar Tahchiev
> you'd like to help...) to finally finish this jsr107 provider for h2lc and > try to test it against the JCS impl. then. > That would let you use JCS with Hibernate. If you want a "native" JCS > provider though, there'd be more code to write though... > Alex > &

Re: [hibernate-dev] JCS Hibernate Region Factory

2014-08-20 Thread Petar Tahchiev
ead-write strategy around collections), but I'd love to test with that too > then (not necessarily perf only though here). > > Anyways, random biased thoughts :) > Alex > > > On Wed, Aug 20, 2014 at 12:56 PM, Guillaume Smet > wrote: > >> Hi Petar, >> >>

[hibernate-dev] JCS Hibernate Region Factory

2014-08-20 Thread Petar Tahchiev
Hi guys, I would really like to give apache commons jcs a spin (the FAQ says performancewise it's faster than EHCache) but I don't really know what to set this property to: hibernate.cache.region.factory_class With EHCache and Hibernate 4 I have it set as following: hibernate.cache.region.factor

[hibernate-dev] Delaying 4.3.6 until tomorrow

2014-07-11 Thread Petar Tahchiev
Hi guys, any chance to have this included in 4.3.6: https://hibernate.atlassian.net/browse/HHH-9217 I have supplied a pull request - it's really simple but keeps blocking me. -- Regards, Petar! Karlovo, Bulgaria. --- Public PGP Key at: https://keyserver1.pgp.com/vkd/DownloadKey.event?keyid=0x1

Re: [hibernate-dev] Hibernate + Log4J2 Performance Problem

2014-07-11 Thread Petar Tahchiev
what Hibernate will use > as primary façade. > > HTH > Sanne > > On 11 July 2014 12:53, Petar Tahchiev wrote: > > Hello, > > > > I'm really sorry to post this here but I couldn't find any jboss-logging > > mailing list. So here's my question. I&#

[hibernate-dev] Hibernate + Log4J2 Performance Problem

2014-07-11 Thread Petar Tahchiev
Hello, I'm really sorry to post this here but I couldn't find any jboss-logging mailing list. So here's my question. I'm reading this issue: https://issues.jboss.org/browse/JBLOGGING-95 and I'm trying to make my hibernate use log4j2. So far I had org.jboss.logging jboss-logging-log4j