Hola,
He probado lo que me has dicho hi ahora tengo en el codigo jsp.
Código:
<%@page import="Simulador.*;"%>
<%
Test test = new Test();
%>
Y en el test.java
Código:
package Simulador;
public class Test {
public static void main(String[] args) {
escriu();
// TODO Auto-generated method stub
}
public static String escriu(){
System.out.println("ENTRO");
String var="HOLA";
return var;
}
}
Y cuando lo ejecuto me sale
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 3 in the jsp file: /Projecte/WebContent/WEB-INF/process.jsp
Alguna idea??
Gracias
Saludos