Where does glassfish save your class/project after deployment on Windows?

后端 未结 4 1825
梦谈多话
梦谈多话 2021-02-14 04:29

I am using Glassfish3.1 on Windows XP. After deploy a web service project using Netbeans, it works fine. But when i go to

install-path\\glassfish-3.1\\glassfish\         


        
4条回答
  •  南笙
    南笙 (楼主)
    2021-02-14 04:59

    When you use netbeans, the default deployment dir is the build/web subdir of your netbeans project folder. E.g. when your project is called myProject, the deployment dir is myProject/build/web.

    It's of course a bit irritating since it is usually outside the glassfish install dir. But you can configure your webapp to be based in any dir of your harddrive.

    In general you can find the location of any of your glassfish webapps in the domain.xml file of your domain, e.g. glassfish/domains/domain1/config/domain.xml

    Each webapp has an element with an attribute location, e.g. for one of my projects:

    
    

提交回复
热议问题