Expandir minha barra de realizações na Comunidade.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.

SOLUCIONADO

Trying to log info from jsp file to console

Avatar

Level 4

A little new to these jsp files .. I see a jsp file which has a variable .. I am trying to find out what the variable value is ,by logging it to the console .. Is there any easy way to. do this ..I tried exploring the options in here https://javabeat.net/how-to-debug-jsp/ But when i load the page which eventually calls this jsp ..its failing with 500 error. 

Caused by: org.apache.sling.api.scripting.ScriptEvaluationException: org.apache.sling.scripting.jsp.jasper.JasperException: Unable to compile class for JSP: 
1 Solução aceita

Avatar

Resposta correta de
Community Advisor

That might be syntax error

can you please provide the asp code here.

Look any jsp files in arm OOB for reference.

 

"text":"<%= jsp_variable%>"

Ver solução na publicação original

2 Respostas

Avatar

Resposta correta de
Community Advisor

That might be syntax error

can you please provide the asp code here.

Look any jsp files in arm OOB for reference.

 

"text":"<%= jsp_variable%>"

Avatar

Community Advisor

@AEMnewbie 

You can do any of the following

  1. To print on page, use JSP expression <%= variableName %>
  2. To print in log file, use JSP scriptlet <% log.info(variableName) %>. Must include global.jsp and you can only print String values
  3. To print in server console, do System.out.println(variableName). Start instance using start.bat