Spring Maven File Path 一般情況下

Program Structure

JPetStore 6 follows the typical maven project structure
/jpetstore <-- Maven pom.xml goes here.
/src
/main/
/java <-- Java code goes here.
/org/
/mybatis
/jpetstore
/domain <-- Business domain objects go here.
/persistence <-- Mapper interfaces go here.
/service <-- Application logic goes here.
/web
/actions <-- Presentation logic (actions) goes here.
/resources <-- Non java files go here.
/org
/mybatis
/jpetstore
/persistence <-- Mapper XML files go here.
/database
/webapp
/css
/images
/WEB-INF <-- web.xml and applicationContext.xml go here.
/jsp <-- JSP files go here.
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章