zoukankan      html  css  js  c++  java
  • Springboot学习记录1--概念介绍以及环境搭建

    摘要:springboot学习记录,环境搭建;

    官方文档地址:https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/

    本机为Ubuntu

    概念:Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。通过这种方式,Spring Boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者。(摘抄自百度百科)

    优点:

    • Create stand-alone Spring applications
    • Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
    • Provide opinionated 'starter' POMs to simplify your Maven configuration
    • Automatically configure Spring whenever possible
    • Provide production-ready features such as metrics, health checks and externalized configuration
    • Absolutely no code generation and no requirement for XML configuration(引自springboot guide)

    环境必须软件列表:jdk(必须1.8不能1.9),idea,mysql,maven,git

    教程如下: http://www.linuxidc.com/Linux/2015-01/112030.htm(jdk安装)

          http://www.linuxidc.com/Linux/2016-07/133128.htm(安装mysql)

                  http://www.linuxidc.com/Linux/2015-03/114619.htm(安装maven)

                       http://www.linuxidc.com/Linux/2016-09/135527.htm(安装git)

         http://blog.csdn.net/qq_31655965/article/details/52788374(IDEA使用教程) 

                 http://blog.csdn.net/v123411739/article/details/49492401(Maven使用教程)

    如有建议,请各位大佬留言指正

    springboot学完之后会推出springcloud系列的学习记录
                                                                                                          --昨夜小楼又东风

  • 相关阅读:
    yCharm代码格式化(自动加空格)
    python调用另一个.py中的类或函数
    深度学习04--卷积神经网络
    深度学习03--神经网络
    深度学习02--数据读取
    深度学习01--TensorFlow
    机器学习08--实战案例
    机器学习07--无监督学习-K-means算法
    机器学习06--逻辑回归
    机器学习05--线性回归+岭回归
  • 原文地址:https://www.cnblogs.com/chao538/p/8072689.html
Copyright © 2011-2022 走看看