java - Intellij tomee set tomee.serialization.class.whitelist -


how setup in intellij idea vm options.

i need setup

set java_opts="-dtomee.serialization.class.whitelist="  set catalina_opts="-dtomee.serialization.class.blacklist=-" 

in run/debug configuration local tomee server pass vm options

-tomee.serialization.class.whitelist=* -tomee.serialization.class.blacklist=- 

also tried without *. still giving me "invalid arguments" error after run/debug server. how set properly?

ps.if run server manually works correct.

you need specify 2 properties java system properties (-d) in vm options of run configuration:

-dtomee.serialization.class.whitelist=* -dtomee.serialization.class.blacklist=- 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -