mybatis 세팅됨

This commit is contained in:
Suh
2024-01-02 17:10:05 +09:00
parent bf8a470a94
commit 2864bb89d4
14 changed files with 174 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.no1.wms.base;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class BaseController {
@GetMapping("/")
public String base(){
return "base/hello";
}
}