There isJSPThe header Declaration of the page is like this.
<% @ Page Language = "Java" Import = "Java. util. *, Com. gisun. eadmin. task .*;"
Pageencoding = "GBK" %>
Now I want to introduce something in another package. I need to add one more sentence.ImportStatement:
<% @ Page import = "com. gisun. eadmin. config. *;" %>
But run thisJSPError:
Generated servlet error:
Syntax Error on token ";", delete this token
After searching for a long time, I did not know that there was an error, and debugging could not be done, and I did not report the number of wrong lines. I finally tried to find it. Let's take a look atImportWhat are the differences in declared colors?
<% @ Page Language = "Java" Import = "Java. util. *, Com. gisun. eadmin. task .*;"
Pageencoding = "GBK" %>
The key is that ifImportIf the statement contains more than one row,Import = "....."Cannot contain semicolons