Skip to main content

Java error: Only a type can be imported. XYZ resolves to a package


I get the error: "Only a type can be imported. XYZ resolves to a package."



Someone has explained the cause here but I am not sure what I supposed to do to fix this. FYI: I am using Eclipse. I have added the code that does the importing below. The java.util.* import works fine.




<%@ page import="java.util.*"%>
<%@ page import="org.ivec.eresearch.knowledgeportal.model.Category"%>
<%@ page import="org.ivec.eresearch.knowledgeportal.dao.CategoryDao"%>

<%
CategoryDao catDao = new CategoryDao();
ArrayList<Category> catList = catDao.selectCategory();

//
%>



Edit: the actual error is below:




org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 7 in the generated java file
Only a type can be imported. org.ivec.eresearch.knowledgeportal.model.Category resolves to a package


Source: Tips4all

Comments

  1. Well, you are not really providing enough details on your webapp but my guess is that you have a JSP with something like that:

    <%@ page import="java.util.*,x.y.Z"%>


    And x.y.Z can't be found on the classpath (i.e. is not present under WEB-INF/classes nor in a JAR of WEB-INF/lib).

    Double check that the WAR you deploy on Tomcat has the following structure:

    my-webapp
    |-- META-INF
    | `-- MANIFEST.MF
    |-- WEB-INF
    | |-- classes
    | | |-- x
    | | | `-- y
    | | | `-- Z.class
    | | `-- another
    | | `-- packagename
    | | `-- AnotherClass.class
    | |-- lib
    | | |-- ajar.jar
    | | |-- bjar.jar
    | | `-- zjar.jar
    | `-- web.xml
    |-- a.jsp
    |-- b.jsp
    `-- index.jsp


    Or that the JAR that bundles x.y.Z.class is present under WEB-INF/lib.

    ReplyDelete
  2. OK I just solved it. In the last import I added a ";" by copying other code examples. I guess it's the standard line ending that is required.

    So

    <%@ page import="java.util.*" %>
    <%@ page import="org.ivec.eresearch.knowledgeportal.dao.CategoryDao" %>
    <%@ page import="org.ivec.eresearch.knowledgeportal.model.Category" %>


    became

    <%@ page import="java.util.*" %>
    <%@ page import="org.ivec.eresearch.knowledgeportal.dao.CategoryDao" %>
    <%@ page import="org.ivec.eresearch.knowledgeportal.model.Category;" %>

    ReplyDelete
  3. Without further details, it sounds like an error in the import declaration of a class. Check, if all import declarations either import all classes from a package or a single class:

    import all.classes.from.package.*;
    import only.one.type.named.MyClass;


    Edit

    OK, after the edit, looks like it's a jsp problem.

    Edit 2

    Here is another forum entry, the problem seems to have similarities and the victim solved it by reinstalling eclipse. I'd try that one first - installing a second instance of eclipse with only the most necessary plugins, a new workspace, the project imported into that clean workspace, and hope for the best...

    ReplyDelete
  4. You have to import something FROM the package, like a class, enum, or interfacee, like this:

    import some.package.SomeClass;


    or, import everything from the package (not recommended)

    import some.package.*;


    edit: maybe I didn't read close enough. Where is the package you're trying to import from located on the filesystem? Is it under WEB-INF/lib?

    ReplyDelete
  5. Take a look at this link here. They seem to have similar problem in Eclipse. Not sure if you will find the solution there but the last message has some suggestions that you can try out.

    ReplyDelete
  6. Are there more details? (Is this in a JSP as in the linked webpage?)

    If so, you can always just use the fully qualified class name.
    rather than:

    import foo.bar.*;
    Baz myBaz;


    you can use

    foo.bar.Baz myBaz;

    ReplyDelete
  7. i know it's kinda too late to reply to this post but since i don't see any clear answer i'd do it anyway...

    you might wanna check out the MANIFEST.MF in META-INF on your eclipse.

    then you might need to add the path of your class files like..

    Class-Path: WEB-INF/classes

    hope it helps. :)

    ReplyDelete
  8. I experienced this weird error too, after changing letter case in the name of a class. The file was not copied to a tomcat server as expected, I had to delete it manually and redeploy. Maybe because I use case insensitive operating system?

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex