SSM三:基于springboot的web系统
在springboot上做web开发和单独的springboot几乎没有差别,这个源码与上一个源码主要区别在于有了web页面。
主页我就使用最基本的html,这样也算是前后端分离了。
index.html
<div class="header">header</div> <div class="main"> <div>left</div> <div>middle</div> <div>right</div> </div> <div class="bottom">bottom</div>
Controller.java
package net.highesoft.ssm.controller; import java.util.HashMap; import java.util.Map; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class TestController { @RequestMapping("/") public String home() { Map<String,String> map=new HashMap<>(); map.put("key", "value"); return "/index.html"; } @RequestMapping("/json") @ResponseBody public Map<String,String> json() { Map<String,String> map=new HashMap<>(); map.put("key", "value"); return map; } }
项目源码:
相关阅读
微信扫描-捐赠支持
加入QQ群-技术交流
评论:
↓ 广告开始-头部带绿为生活 ↓
↑ 广告结束-尾部支持多点击 ↑