Break point on return (Java)

已回答

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

You can use the Show method return values option:

1

请先登录再写评论。