首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    看必会!SpringBoot系列之从0搭建项目

    使用SpringBoot已经也有两年多了,从一开始对SpringBoot的零认知到现在日常开发必接触的框架,说实话受益良多,其实SpringBoot就是Spring的扩展,以前我们做框架整合以及开发过程中会有大量的配置文件需要配置,而SpringBoot的出现就是把我们从大量配置文件xml中解救出来,不再需要做过多bean配置、DI配置,使用SpringBoot之后只需要集中在application配置文件中做简单属性配置即可,由于SpringBoot内嵌了Tomcat这样还免去了我们安装Tomcat的麻烦,我们只需要运行项目根目录下启动类的main方法即可启动项目,是不是对比以往的项目有没有感觉牛逼plus,今天先说到这,接下来我们学习如何从零搭建SpringBoot项目。

    02

    什么是Spring Boot

    logging.config= # Location of the logging configuration file. For instance classpath:logback.xml for Logback logging.exception-conversion-word=%wEx # Conversion word used when logging exceptions. logging.file= # Log file name. For instance myapp.log logging.level.*= # Log levels severity mapping. For instance logging.level.org.springframework=DEBUG logging.path= # Location of the log file. For instance /var/log logging.pattern.console= # Appender pattern for output to the console. Only supported with the default logback setup. logging.pattern.file= # Appender pattern for output to the file. Only supported with the default logback setup. logging.pattern.level= # Appender pattern for log level (default %5p). Only supported with the default logback setup. logging.register-shutdown-hook=false # Register a shutdown hook for the logging system when it is initialized.

    05

    MyBatis Plus 初体验

    在平时使用 Mybatis 的时候,总会开发一些通用的增删改查,真正自己定义的方法并不多,这时我们就在考虑:有没有那么一种框架,可以提供简单的 CRUD,还能进行自定义扩展自己的数据库操作层接口,灵活的进行多表联结查询?JPA 标准(实现框架有 Hibernate 和 Spring Data)可以解决上述需求,不过多表联结查询还是不够优雅,个人感觉扩展和自定义查询不够灵活。这个时候一般选用 Myabtis 作为 ORM 框架。只要你用过 Mybatis,就会被它的灵活和简洁征服,但是它没有提供一个通用的 CRUD,Mybatis 的代码生成插件可以生成通用的 CRUD,不过配置稍显麻烦。Myabtis Plus 优雅的解决了上面的问题,对 Myabtis 框架无侵入,也有一个代码生成器,不过本次不作为讨论内容。既然 Mybatis Plus 可以解决上面的问题,一起来看一下。

    03
    领券