Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Running a standalone server

Hi Keith,
What you can do is to configure manually the request logger
        Server server = new Server(8080);
        server.setHandler(new HelloWorld());


        NCSARequestLog ncsaRequestLog = new NCSARequestLog();
        // Here the logger configuration
        server.setRequestLog( ncsaRequestLog );

        server.start();
        server.join();

That's the easiest way. 
To have a better logging system, I would recommend using a slf4j implementation (log4j2 or logback) with using the request logger class Slf4jRequestLog

HTH
Olivier


On Thu, Oct 26, 2017 at 1:53 PM, Keith Brown <keith6014@xxxxxxxxx> wrote:
Currently, I am running a stanalone server by doing this:
java -Dorg.eclipse.jetty.util.log.DEBUG=true -cp
.:../jetty-all-9.4.7.v20170914-uber.jar HelloWorld

by following https://wiki.eclipse.org/Jetty/Tutorial/Jetty_HelloWorld

Is there a way I can simulate a start.ini with this setup? and
jetty.xml and webapp? How can I also setup request logs
(https://www.eclipse.org/jetty/documentation/9.4.x/configuring-jetty-request-logs.html)
with this setup?

I want something small and functionocal while not trying to fight
layers of directories and files.

Any thoughts would be much appreciated.
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-users



--
Olivier

Back to the top