Initial commit
This commit is contained in:
18
src/main/java/co/nook/app/join/JoinController.java
Normal file
18
src/main/java/co/nook/app/join/JoinController.java
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user