Re: [E] Re: Official documentation for running an embedded Tomcat server

2019-11-25 Thread Bauer, Margaret M (Peggy)
Ease of deployment and build in the AWS world. On Mon, Nov 25, 2019 at 3:56 PM Behrang Saeedzadeh wrote: > For an example use case, see Spring Boot. It can use an embedded Tomcat and > build an executable Uber Jar. Then you can start your Web app by running > java -jar app.jar. > > On Tue, 26

Re: Official documentation for running an embedded Tomcat server

2019-11-25 Thread Behrang Saeedzadeh
For an example use case, see Spring Boot. It can use an embedded Tomcat and build an executable Uber Jar. Then you can start your Web app by running java -jar app.jar. On Tue, 26 Nov. 2019, 2:29 am Mladen Adamović, wrote: > I wonder why somebody would want to run "embedded Tomcat" and what it >

Re: [OT] Official documentation for running an embedded Tomcat server

2019-11-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mladen, On 11/25/19 10:28, Mladen Adamović wrote: > I wonder why somebody would want to run "embedded Tomcat" and what > it actually means? It means that the application starts the servlet container, not the other way around. > I'm working

Re: Official documentation for running an embedded Tomcat server

2019-11-25 Thread Mladen Adamović
I wonder why somebody would want to run "embedded Tomcat" and what it actually means? I'm working professionally in software engineering since 2003 and I'm puzzled. >From looking into that article, it seems that Java app starts Tomcat, why somebody would want that? On Sun, Nov 24, 2019 at 12:27

Re: Official documentation for running an embedded Tomcat server

2019-11-23 Thread Behrang Saeedzadeh
I will create a PR if I find the time to write one. On Sat, Nov 23, 2019 at 9:40 PM Mark Thomas wrote: > On 23/11/2019 08:17, Behrang Saeedzadeh wrote: > > Hi all, > > > > Are there any official docs for how to run Tomcat as an embedded server? > > Searching returns some results such as > > >

Re: Official documentation for running an embedded Tomcat server

2019-11-23 Thread Mark Thomas
On 23/11/2019 08:17, Behrang Saeedzadeh wrote: > Hi all, > > Are there any official docs for how to run Tomcat as an embedded server? > Searching returns some results such as > https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat > but I haven't seen any

Official documentation for running an embedded Tomcat server

2019-11-23 Thread Behrang Saeedzadeh
Hi all, Are there any official docs for how to run Tomcat as an embedded server? Searching returns some results such as https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat but I haven't seen any official docs. Are there any? Thanks in advance, Behrang