Grails question: Confused about using a package to hold domain classes.
I'm using Netbeans on Mac to check out Grails.
When I create domain classes without using a package holding it, I can just go to localhost:8080/gTunes
and the expected .gsp
page is rendered properly.
However when I use a package (com.g2one.gtunes
) to hold a domain class (Song
), I don't see the .gsp
page when I go to localhost:8080/gTunes
. Instead I see a Directory view of folders/files such as META-INF
, WEB-INF
, etc. In order to see the expected .gsp
page, I have to type in the specific URL localhost:8080/gTunes/index.gsp
In my research I've seen people talk about adding the following line but I can't figure out where to add it.
<%@page import="path.to.domains.*"%>
Any help is appreciated.
Thank you.