欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jspMultiple annotations found at this line: - Syntax error on token "void", @ expected - Syntax er

程序员文章站 2024-01-06 13:23:46
...

出错代码

 <%
    	 public void show(){
    		System.out.println("hello the world");
    	}
    	%>

改为全局变量正确

<!%
	 public void show(){
		System.out.println("hello the world");
	}
	%>

这其实时一个java语法错误
java不允许在方法内生命方法,因为java的函数俗称成员函数,依赖对象。为了在方法内变相声明变量可以声明一个内部类或者匿名类来实现。