Startup time between TomEE 8.0.0-M1 Plus and MP

2018-10-22 Thread COURTAULT Francois
Hello everyone, I have performed some comparison between TomEE 8.0.0-M1 Plus and MP. The average startup time for TomEE 8.0.0-M1 Plus using java 11, on my laptop with Core i5, SSD and 16 GB of RAM is: 1,303 ms The average startup time for TomEE 8.0.0-M1 MP using java 11, on my laptop with Cor

RE: Startup time between TomEE 8.0.0-M1 Plus and MP

2018-10-22 Thread COURTAULT Francois
Hello Roberto, So if I have understood you well TomEE MP is TomEE Web Profile + MP specifications, right ? Best Regards. -Original Message- From: Roberto Cortez [mailto:radcor...@yahoo.com.INVALID] Sent: lundi 22 octobre 2018 18:14 To: us...@tomee.apache.org Cc: dev@tomee.apache.org Sub

Re: Startup time between TomEE 8.0.0-M1 Plus and MP

2018-10-22 Thread Roberto Cortez
Hi Francois, Thank you. TomEE MP is build from TomEE WebProfile, so it does support Java EE, including JPA and Concurrency. Stuff, available in MP Plus, like JMS or JBatch are currently not available in TomEE MP. Regarding the error, I’ve only notice them after the release. I suspect that t

Re: TomEE 8.0.0-M1 has been released :-)

2018-10-22 Thread Roberto Cortez
Hi Francois, Thank you. You are correct. TomEE 8 targets Java EE 8, but please note that we don’t have the TCK, so we cannot say we are fully compliant. Yes, you are also correct regarding MP. Cheers, Roberto > On 22 Oct 2018, at 01:44, COURTAULT Francois > wrote: > > Hello everyone, > >

TomEE 8.0.0-M1 has been released :-)

2018-10-22 Thread COURTAULT Francois
Hello everyone, Congratulation for this intermediate release it provides visibility and shows that you're working on it :) Could you confirm that TomEE 8 will be Java EE 8 compliant ? Meaning that: * JAX-RS 2.1 * CDI 2.0 * JSON-P 1.1 * JSON-B 1.0 will be there

Aw: Re: TomEE with flexibe Db-Ressource

2018-10-22 Thread Ingo Mahnke
Thank you!!! > Gesendet: Montag, 22. Oktober 2018 um 10:35 Uhr > Von: "Romain Manni-Bucau" > An: dev@tomee.apache.org > Betreff: Re: TomEE with flexibe Db-Ressource > > Hi, > > yes, it will work. What we often do to keep the java side and not loose > users in dev and prod env is to bridge sys

Re: TomEE with flexibe Db-Ressource

2018-10-22 Thread Romain Manni-Bucau
Hi, yes, it will work. What we often do to keep the java side and not loose users in dev and prod env is to bridge system properties so you use: JdbcDriver org.mariadb.jdbc.Driver JdbcUrl ${quviondb.url} UserName x Password x JtaManaged true and for docker you do -e CATALINA_O

TomEE with flexibe Db-Ressource

2018-10-22 Thread Ingo Mahnke
Hallo! We are using "apache-tomee-plus-1.7.4". In the file "conf/tomee.xml" I setup the database resource: JdbcDriver org.mariadb.jdbc.Driver JdbcUrl jdbc:mariadb://xx UserName x Password x JtaManaged true Everthing works fine. Now we switch to dock