springboot项目常用的依赖

1.

    @RequestMapping({"/","/index"})
//    @ResponseBody
    public String toIndex(Model model){

       return "test";
    }

@RequestMapping后边括号里的/和/index是浏览器地址栏里的,用来指向使用controller里的哪个方法。

前后端不分离的项目:return "test"return "test"是所要显示的页面, 如果加了@ResponseBody则返回一个json对象,

前后端分离的页面:return "test"的test,返回一个json对象,如果想要重定向显示一个页面使用(return "redirect:/hello/world";?????

2.pom文件(依赖)

前端:操作页面thymeleaf:thymeleaf-spring5,thymeleaf-extras-java8time,web页面:spring-boot-starter-web,

后台:连接数据库:mysql-connector-java,更换数据源:druid,整合mybatis:mybatis-spring-boot-starter,有参无参构造函数和getset方法:lombok,安全框架shiro整合spring和thymeleaf:shiro-spring,thymeleaf-extras-shiro,输出一些日志:log4j。

测试类:spring-boot-starter-test

你可能感兴趣的:(大数据)