It's up to you what to use, but can you add a real logging framework instead of these System.out.println statements? They will be more performant, more configurable and are more typical for a web server.
You can use whatever you want. My example project uses flogger which is what Google uses internally. You can also use log4j directly or slf4j with a properly configured implementation.
It's up to you what to use, but can you add a real logging framework instead of these
System.out.printlnstatements? They will be more performant, more configurable and are more typical for a web server.You can use whatever you want. My example project uses flogger which is what Google uses internally. You can also use log4j directly or slf4j with a properly configured implementation.