springboot 통합 shiro 전 작업

페이지 를 뛰 어 넘 으 려 고 하기 때문에, 여 기 는 thymlaf 템 플 릿 을 사용 합 니 다.
Spirng Boot 가 thyleaf 템 플 릿 엔진 에 대한 의존 도 를 도입 하 였 습 니 다.버 전 (2017 년 3 월 3 일)

    org.springframework.boot
    spring-boot-starter-thymeleaf
    1.5.2.RELEASE


간단 한 페이지 를 몇 개 쓰 고 thymlaf 템 플 릿 의 일부 설정 으로 제 글 에 도 적 혀 있 습 니 다.http://www.jianshu.com/p/381e02c283f3 index.html



    Insert title here


index


login.html



    Insert title here

写完之后是访问不了login页面的,是因为还没写Controller,不能写成@RestController,因为不是返回json数据,而是跳转页面

@Controller
public class HomeController {
    @RequestMapping({"/","/index"})
    public String index(){
        return"/index";
    }

    @GetMapping("login")
    public String login(){
        return"login";
    }
}

다음은 두 페이지, userInfo 와 userInfo Add userInfo 를 만 듭 니 다.



    Title



userInfoAdd



    Insert title here



userInfoDel



    Insert title here



물론 입 니 다. 뒤에 이것 은 일정한 권한 이 있어 야 로그 인 할 수 있 습 니 다. 그럼 어떻게 하 시 겠 습 니까? 다음 에 말씀 드 리 겠 습 니 다.
글 은 주로 작가 임상 섬유 의 블 로그 를 참고 한다
http://412887952-qq-com.iteye.com/blog/2299732

좋은 웹페이지 즐겨찾기