springboot集成shiro前的工作

由于要跳转页面,我这里使用thymleaf模板

引入了Spirng Boot对thymleaf模板引擎的依赖。版本(Mar 03, 2017)


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

写几个简单的页面,用thymleaf模板的一些配置在我的一篇文章也有写到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和userInfoAdd
userInfo




    Title


用户查询界面

userInfoAdd




    Insert title here


用户添加界面

userInfoDel




    Insert title here


用户删除界面

当然了,后面这是要一定权限才可以登录进去的,那怎么做了,接下来再讲

文章主要参考于作者林祥纤的博客

http://412887952-qq-com.iteye.com/blog/2299732

你可能感兴趣的:(springboot集成shiro前的工作)