Break point on return (Java)

Answered

Hi, 

I have something like this:

return jdbcTemplate.query(sql, params, mapper);

Is there a way to set a break point AFTER the call to .query, but BEFORE it returns? I've been creating a variable to hold the result and returning it in the next line. IntelliJ then says "redundant variable" Well... I know that... :)

Thanks

0
1 comment

You can use the Show method return values option:

1

Please sign in to leave a comment.