Skip to content
Advertisement

How to print in console in Spring MVC application(Dynamic web project)?

I have a Dynamic Web app in Eclipse which has a normal Controller, Entity and a DAO class.

I am using Hibernate to get the data from the database and then displaying it in JSP page.

But when I try to use System.out.print(); in Controller class to see weather my data is being fetched from the database it is not printing it in the console.

Am I missing something?

Here are the following classes.

Controller.java

JavaScript

DAO class

JavaScript

Entity class

JavaScript

Advertisement

Answer

What you want to do requires a logger. Use the java.util.Logger class to print to the console. A logger instance can be initialized using Logger logger = new Logger(getClass().toString()); Then for output logger.info("Hello, World!");

Edit: To explain more why System.out won’t work. I am not 100% sure but my intuition is that the logging window on your server that you are seeing is not the same output that the System.out PrintStream object points to. According to the documentation on the java.lang.System class found here:

JavaScript

What this says is that the System.out object prints to whatever the destination is it is told to. System.out can be pointed to other destinations by assigning it another PrintStream using the System.setOut(PrintStream). Figuring out how to get an PrintStream object that points to your server logs my require a little digging around.

In any case I should point out that System.out is rarely used in the real world and most real world applications use Loggers for displaying output. Loggers will print meta data about the surrounding context of the output such as the fully qualified name of that class that output is coming from as well as the exact method of that class. This makes debugging and tracing your code much easier than using System.out.

Additionally Loggers have tiers that can categorize your output based on severity. Logging statements that simply trace the execution of your code can be filtered from logging statements that are printing warnings or serious errors. System.out only has an error level and a default level. The java.util.Logger class has a trace level, a debug level, a info level, and a warn level. Each level can be filtered based on configuration and each level provides meta data about the statement to the developer. At a quick glance its obvious whether the statement says something they should be concerned about or whether its just a general update about the execution.

This is starting to get into the weeds a bit but the general take away is that Loggers are much better equipped for a real world application thanSystem.out. They do everything System.out can do, plus more. And btw if your in an application that has a server log that should be a hint that you should be migrating to using loggers anyway. Hope this helps!

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement