Git Product home page Git Product logo

Comments (5)

ggrandes avatar ggrandes commented on July 20, 2024

Thanks.

  • jrinetd was designed as standalone server in mind... change the code to do library/embedable is not a rapid/easy change (but I'll keep that in mind for a future release).

But.. If you want use jrinetd like a lib with current code, you can create a "relatively safe" box using inside a classloader. You can create a webapp that run inside Tomcat (but only one instance of jrinetd by webapp. Internally jrinetd use singletons for configs and internal references to allow reloading config without breaking active connections), exposing an API to do changes in config...

  • Config is autoreloadable on file modification, the file must be in "classpath + / + arg[0]" of main.

But... Inside a container like Tomcat, you can change config file (allowing persistence after hard restarts), jrinetd will reload, reflecting changes in its memory.

from jrinetd.

ggrandes avatar ggrandes commented on July 20, 2024

However, I will remake some methods to simplify the embedded (soon).

from jrinetd.

ggrandes avatar ggrandes commented on July 20, 2024

v1.1.0, done [5db9fd3], with this you can embed (not 100% perfect) in a Tomcat with a little less effort.

final Jrinetd jrinetd = new Jrinetd(configName);
jrinetd.initLog();
jrinetd.addShutdownHook();
jrinetd.start();
// Do Things
jrinetd.stop();

from jrinetd.

shisoft avatar shisoft commented on July 20, 2024

Thanks
I have seen you make it more handy on the lifecycle of the server. I am wondering is there any to to reset or alter the redirection server lists.

from jrinetd.

ggrandes avatar ggrandes commented on July 20, 2024

I suppose that you are using Server.class directly for embed, without Jrinetd (daemon). I do a patch v1.1.1 [1f17dc1], with this, you can use Server().getEndPoint().setAddress("host1:port1,host2:port2,...")

from jrinetd.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.