Initial commit

This commit is contained in:
Suh
2020-04-24 01:58:59 +09:00
commit cb979153ec
24 changed files with 715 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package co.nook.app.join;
import co.nook.app.member.MemberVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class JoinController{
MemberVO vo;
@Autowired
public JoinController( MemberVO vo){
this.vo = vo;
}
}