Add Java 7 instrumentation manifest attributes
Update META-INF/MANIFEST.MF for spring-instrument to include
necessary attributes for running under Java 7:
Can-Redefine-Classes : true
Can-Retransform-Classes: true
Can-Set-Native-Method-Prefix : false
(see http://docs.oracle.com/javase/7/docs/api/java/lang/instrument/
package-summary.html)
Prior to this commit `InstrumentationSavingAgent.getInstrumentation().
addTransformer(t, true);` would fail under Java 7.
Issue: SPR-10731
This commit is contained in:
parent
1204d2aef4
commit
50333ca68e
|
|
@ -267,6 +267,9 @@ project("spring-instrument") {
|
||||||
jar {
|
jar {
|
||||||
manifest.attributes["Premain-Class"] =
|
manifest.attributes["Premain-Class"] =
|
||||||
"org.springframework.instrument.InstrumentationSavingAgent"
|
"org.springframework.instrument.InstrumentationSavingAgent"
|
||||||
|
manifest.attributes["Can-Redefine-Classes"] = "true"
|
||||||
|
manifest.attributes["Can-Retransform-Classes"] = "true"
|
||||||
|
manifest.attributes["Can-Set-Native-Method-Prefix"] = "false"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue