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 Nov. 2019, 2:29 am Mladen Adamović, 
> wrote:
>
> > 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 AM Behrang Saeedzadeh  >
> > wrote:
> >
> > > 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
> > > > >
> > > >
> > >
> >
> https://urldefense.proofpoint.com/v2/url?u=https-3A__devcenter.heroku.com_articles_create-2Da-2Djava-2Dweb-2Dapplication-2Dusing-2Dembedded-2Dtomcat=DwIFaQ=udBTRvFvXC5Dhqg7UHpJlPps3mZ3LRxpb6__0PomBTQ=JYuCIQ8r7H-c_yYFTZ4gdv4goO0lCCtidMRmNza4zoA=wnrcnb8haPnDfVwSRvz9Cm28Kj7ACYEr8ZF0JTdMDLM=RoC8ts62eTgtf8yZNCja1R0TFRfhZHsoFF5x7IIPqsM=
> > > > > but I haven't seen any official docs.
> > > > >
> > > > > Are there any?
> > > >
> > > >
> > >
> >
> https://urldefense.proofpoint.com/v2/url?u=http-3A__tomcat.apache.org_tomcat-2D9.0-2Ddoc_api_org_apache_catalina_startup_Tomcat.html=DwIFaQ=udBTRvFvXC5Dhqg7UHpJlPps3mZ3LRxpb6__0PomBTQ=JYuCIQ8r7H-c_yYFTZ4gdv4goO0lCCtidMRmNza4zoA=wnrcnb8haPnDfVwSRvz9Cm28Kj7ACYEr8ZF0JTdMDLM=S1eZ7tY4G6jD32KhDWaVir7gfQaATAOrJ4qlUGGy5iY=
> > > >
> > > > is the closest thing we have but I suspect parts of it are out of
> date.
> > > > The unit tests are a good source of samples of how to use it.
> > > >
> > > > Care to contribute a how-to page for the docs?
> > > >
> > > > Mark
> > > >
> > > > -
> > > > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > > > For additional commands, e-mail: users-h...@tomcat.apache.org
> > > >
> > > >
> > >
> >
>


-- 
*Peggy Bauer*
CAO Production Support
214-770-1782


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
> 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 AM Behrang Saeedzadeh 
> wrote:
>
> > 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
> > > >
> > >
> >
> https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat
> > > > but I haven't seen any official docs.
> > > >
> > > > Are there any?
> > >
> > >
> >
> http://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/catalina/startup/Tomcat.html
> > >
> > > is the closest thing we have but I suspect parts of it are out of date.
> > > The unit tests are a good source of samples of how to use it.
> > >
> > > Care to contribute a how-to page for the docs?
> > >
> > > Mark
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > > For additional commands, e-mail: users-h...@tomcat.apache.org
> > >
> > >
> >
>


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 AM Behrang Saeedzadeh 
wrote:

> 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
> > >
> >
> https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat
> > > but I haven't seen any official docs.
> > >
> > > Are there any?
> >
> >
> http://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/catalina/startup/Tomcat.html
> >
> > is the closest thing we have but I suspect parts of it are out of date.
> > The unit tests are a good source of samples of how to use it.
> >
> > Care to contribute a how-to page for the docs?
> >
> > Mark
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: users-h...@tomcat.apache.org
> >
> >
>


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
> >
> https://devcenter.heroku.com/articles/create-a-java-web-application-using-embedded-tomcat
> > but I haven't seen any official docs.
> >
> > Are there any?
>
> http://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/catalina/startup/Tomcat.html
>
> is the closest thing we have but I suspect parts of it are out of date.
> The unit tests are a good source of samples of how to use it.
>
> Care to contribute a how-to page for the docs?
>
> Mark
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


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 docs.
> 
> Are there any?
http://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/catalina/startup/Tomcat.html

is the closest thing we have but I suspect parts of it are out of date.
The unit tests are a good source of samples of how to use it.

Care to contribute a how-to page for the docs?

Mark

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org