zoukankan      html  css  js  c++  java
  • Spring Boot—05页面跳转


    package com.smartmap.sample.ch1.controller.view;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.util.StringUtils;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    
    @Controller
    @RequestMapping("/system")
    public class MainViewController {
    
        @RequestMapping("")
        public String index(@RequestParam(required = false, name = "sessionId") String sessionId, Model model) {
            if (sessionId == null || sessionId.equals("")) {
                return "redirect:/system/login.html";
                // return "forward:/system/login.html";
            } else {
                String osName = System.getProperty("os.name");
                model.addAttribute("name", "hello world");
                model.addAttribute("host", osName);
                return "index";
            }
        }
    
        @RequestMapping("/login.html")
        public String login(@RequestParam(required = false, name = "username") String username,
                @RequestParam(required = false, name = "password") String password, Model model) {
    
            if (StringUtils.isEmpty(username) || StringUtils.isEmpty(password)) {
                return "login.html";
            } else {
                return "redirect:/system?sessionId=12345";
            }
        }
    }
  • 相关阅读:
    ASP.NET 篇
    .NET Core 篇
    JS-CSS篇
    IIS使用篇
    WebService篇
    电脑使用篇
    数据库使用篇
    正则表达式篇
    Linux学习篇
    Leetcode 198. 打家劫舍 dp
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/8920947.html
Copyright © 2011-2022 走看看