I have set a breakpoint that allows me to see the value in a field on an object. I'd like to change the value then continue execution, but then I try to edit the value from the variables view, the value field is grayed-out. Is there any way to change variable values while debugging?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You can apply your code changes through your debug session simply by selecting
Apply Code Changes
under theDebug
menu. Thanks to this feature, you can debug code, make fixes, and then continue debugging without restarting the application.If you want to apply your code changes automatically when you save changes to JAVA code while debugging, from the the "Tools" menu, you select "Options", then click the "Java Debugger" tab, then check the "Apply code changes after save" and then press "OK".
It is also possible to change the value of the primitive variables and Strings in-place in the Value column of Variables window. To change values of Object variables, you can use "Evaluate Expression..." under menu Debug option (Ctrl+F9).