| 12345678910111213141516171819202122232425 |
- package com.xmzs.controller;
- import cn.dev33.satoken.annotation.SaIgnore;
- import lombok.RequiredArgsConstructor;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.GetMapping;
- /**
- * 首页
- *
- * @author Lion Li
- */
- @SaIgnore
- @RequiredArgsConstructor
- @Controller
- public class IndexController {
- /**
- * 访问首页,提示语
- */
- @GetMapping("/")
- public String index() {
- return "index.html";
- }
- }
|