Quantcast
Channel: Using static final Strings for SQL Query in Spring Boot - Code Review Stack Exchange
Viewing all articles
Browse latest Browse all 4

Answer by K.H. for Using static final Strings for SQL Query in Spring Boot

$
0
0

Not many valid reasons, why would ever isRecordExists2 be better method. It is almost always good to extract reusable strings into constants and split code into smaller pieces. I definitely vote for isRecordExists. If you decide to stick with isRecordExists2, why even create sqlQuery variable? You might as well just pass the string itself into queryForObject.

Only possible downsides of using isRecordExists I can think of (but very small and insignificant imho):

  • Static field is always there and taking some piece of memory. Local string would not unless while that method is being called.
  • That string is not as close to method and therefore code might be harder for read (but we have IDEs to help with that). I would choose better name than QUERY to help with that too.

If there are specific coding standards in Spring boot against it, please link them :-)


Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>