首页>代码>spring boot+mybatis+spring mvc+bootstrap开发停车位管理系统(调用百度地图API)>/park-system/park-system/src/main/java/com/imust/controller/IndexController.java
package com.imust.controller; import java.util.List; import java.util.Properties; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import com.imust.entity.Notice; import com.imust.service.NoticeService; @Controller public class IndexController { @Autowired private NoticeService noticeService; @RequestMapping("/404") public String error() { return "404"; } @RequestMapping("/index") public String index(Model model) { List<Notice> noticeList = noticeService.getAll(); model.addAttribute("noticeList",noticeList); return "index"; } @RequestMapping("/admin-index") public String index2(Model model) { return "admin/index"; } @RequestMapping("/login") public String login() { return "admin/login"; } @RequestMapping("/join") public String join() { return "join"; } @RequestMapping("/welcome") public String welcome(HttpServletRequest request,Model model) { String localAddr = request.getLocalAddr(); //取得服务器IP int localPort = request.getLocalPort(); //取得服务器端口 String localName = request.getLocalName(); //取得服务器名称 String serverName = request.getServerName(); //服务器域名 Properties props=System.getProperties(); //系统属性 String javaVersion = props.getProperty("java.version");//操作系统的版本 String osName = props.getProperty("os.name");//操作系统的名称 model.addAttribute("localAddr",localAddr); model.addAttribute("localPort",localPort); model.addAttribute("localName",localName); model.addAttribute("serverName",serverName); model.addAttribute("osName",osName); model.addAttribute("javaVersion",javaVersion); return "admin/welcome"; } }
最近下载更多
柳咪华沙 LV7
6月28日
admin_z LV22
2023年12月22日
45436683 LV8
2023年10月10日
微信网友_6507459064762368 LV2
2023年6月6日
bai6011 LV1
2023年6月4日
清江纸 LV2
2023年4月18日
liukun666 LV1
2023年4月11日
qwertytao123 LV3
2023年3月8日
jiyun2021 LV9
2023年2月1日
刘亦菲9527 LV15
2022年8月3日
最近浏览更多
188776889
8月27日
暂无贡献等级
柳咪华沙 LV7
6月28日
计科一班 LV7
6月19日
暂无贡献等级
1941549176 LV4
4月29日
微信网友_6927932988952576 LV12
3月31日
zolscy LV12
3月24日
哪里的完整版 LV7
1月8日
hhh12345 LV7
2023年12月23日
admin_z LV22
2023年12月22日