搭建SpringMVC+MyBatis开发框架六

时间:2021-05-20 17:53:25

建立Springmvc包结构

1.看看我们在springmvc.xml中曾经配置过扫描net.quickcodes这个包下面的所有java文件:

搭建SpringMVC+MyBatis开发框架六

现在我们就在"src/main/java"建立一个名为“net.quickcodes”的包:

搭建SpringMVC+MyBatis开发框架六

搭建SpringMVC+MyBatis开发框架六

2.在该包下面新建五个文件夹:
controller:存放控制器层相关代码;
service:存放服务层相关代码;
dao:存放数据持久层相关代码;
entity:存放实体bean;
common:存放工具类代码;

搭建SpringMVC+MyBatis开发框架六

3.在controller文件夹下建立一个Index控制器"Indexcontroller.java":

搭建SpringMVC+MyBatis开发框架六

package net.quickcodes.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; @Controller
public class IndexController { @RequestMapping(value = "hello")
public String helloWorld(){
return "index";
} }

现在可以通过http://localhost:8080/helloworld/hello.html访问了:

搭建SpringMVC+MyBatis开发框架六