Sin descripción

gagamel f86d958069 Merge branch 'develop' of http://112.172.147.34:4936/style24/style24.admin.git into develop hace 5 años
src f86d958069 Merge branch 'develop' of http://112.172.147.34:4936/style24/style24.admin.git into develop hace 5 años
.gitignore 6e579875a6 test폴더 git ignoer 추가 hace 5 años
.project 4bd386baae first commit hace 5 años
README.md 557055f2e8 README 추가 hace 5 años
pom.xml 179007b9d0 style24-core 버전명시 hace 5 años

README.md

style24

locd

-Dspring.profiles.active=locd

locp

-Dspring.profiles.active=locp

dev

-Dspring.profiles.active=dev

프로그래밍 규칙

1. Java Domain 생성시 DB의 Key가 되는 번호인 경우 Integer 타입으로 만들어줘야 한다.
   > PK가 번호로 되어 있는 것은 db는 int unsigned 형식이고 자바에서는 Integer 형식

2. Java Method 에 대한 네이밍 규칙은 Fullname으로 해야한다.
   2.1 목록은 ~List
   2.2 등록은 save~, create~
   2.3 업데이트는 update~
   2.4 삭제는 delete~

3. Java Service 영역에서 CUD가 있으면 반드시 @Transactional("shopTxnManager") 명시해 줘야 한다.

4. 팝업 화면에 대한 네이밍 규칙은 ~PopupForm.html 해야한다.