Grails导入NetBeans错误

时间:2013-04-22 06:58:35

标签: grails netbeans

我的代码位于main.gsp文件

的顶部
<%@ page import="com.somethingToImport"%>

NetBeans给了我一个错误:expecting EOF, found 'import' @ line 1, column 20 我认为这导致我的应用程序在IE中崩溃。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:1)

这应该有助于IE问题,但不会修复NetBeans抱怨。尝试在GSP的第一行中包含DOCTYPE

示例:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <%@ page import="com.somethingToImport" %> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 

注意:我在导入和'%'

之间添加了一个空格