I have an OSGi b1 package exporting a class with
public static final String MYVAL = "a";
and the second set b2 is compiled and deployed using version 1 of b1.
Later I change the value in b1 to
public static final String MYVAL = "b";
but I only recompile and expand b1, b2 does not change or recompile.
Is it possible that b2 still sees the value aat runtime?
source
share