Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [equinox-dev] Pass system properties to Equinox Servlet

When equinox is embedded in WAR it does not use system properties to back its configuration.  This is because system properties are a VM singleton.  Using system properties for configuration would risk colliding with other WARs that also embed equinox.  This is why the config.ini and launch.ini options do not get reflected in the system properties.  Is there any way you can change the bundle to use BundleContext.getProperty instead of system properties?

Tom





From:        David Cao <govelogo@xxxxxxxxx>
To:        Equinox development mailing list <equinox-dev@xxxxxxxxxxx>
Date:        10/29/2014 11:22 AM
Subject:        [equinox-dev] Pass system properties to Equinox Servlet
Sent by:        equinox-dev-bounces@xxxxxxxxxxx




Hello there,

I have a bundle in Equinox Servlet in Tomcat that expects a value passed by a system properties. I can do it as a java vm -D argument. But I would like to find an alternate way using either launch.ini or config.ini.

I tried appending this 2 line in launch.ini,

-vmargs
-Dmy.property=my.value

But it didn't seem to work. And I could not find how to do it via config.ini.

Can someone show what I did wrong? Thanks a lot,

David
_______________________________________________
equinox-dev mailing list
equinox-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/equinox-dev

Back to the top