码迷,mamicode.com
首页 > 编程语言 > 详细

springboot项目搭建

时间:2018-02-11 22:47:06      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:enable   string   cti   app   parent   net   资源   web项目   control   

springboot是一个依赖于maven的、快速框架搭建工具。以约定优于配置的方式提供了许多时下流行的java后台框架搭建。使用者可以通过一些约定的配置在极短的时间内完成一类框架的搭建。
比如:RESTful后台框架搭建。
搭建步骤为:
(1)新建一个maven项目。
(2)配置项目父依赖为springboot,即项目依赖完整继承spring-boot-starter-parent,这样就能达到:完整引入springboot资源依赖、插件列表、插件配置等内容(dependencies、developers、contributors、plugin lists、reports lists、plugin executions with matching ids、plugin configuration)

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.0.RELEASE</version>
</parent>


(3)配置项目启动模块(这个东西指定了项目是web项目,还是java项目,或者别的项目具体选值参照:http://mvnrepository.com/artifact/org.springframework.boot)
此处配置项目为RESTful风格的web项目,配置如下:

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

配置完成的pom.xml例子如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <!-- 项目信息 -->
    <modelVersion>1.0.0</modelVersion>
    <groupId>com.chendeming.springboot</groupId>
    <artifactId>demo1</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <!-- 项目依赖继承 -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.0.RELEASE</version>
    </parent>

    <dependencies>
       <!-- 这里可以简单理解为引入了一个外部依赖jar包的配置,更多的maven依赖,可以在这里以这种方式添加,具体参见百度maven依赖配置,此处不赘述 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <!-- 此启动器内置tomcat、包含配置spring-webmvc,可完成全栈web开发,风格为RESTful -->
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>            

 

(4)写一个springboot启动类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

 

备注说明:
@SpringBootApplication 被 @Configuration、@EnableAutoConfiguration、@ComponentScan 注解所修饰,换言之 Springboot 提供了统一的注解来替代以上三个注解,简化程序的配置。

@Configuration:注解是一个类级注释,指示对象是一个bean定义的源。往明白了说,就是用注解代替xml配置。@Configuration 类通过 @bean 注解的公共方法声明bean。通俗的讲 @Configuration 一般与 @Bean 注解配合使用,用@Configuration 注解类等价与 XML 中配置 beans,用 @Bean 注解方法等价于 XML 中配置 bean。

@EnableAutoConfiguration:注解启用 Spring 应用程序上下文的自动配置,试图猜测和配置您可能需要的bean。自动配置类通常采用基于你的 classpath 和已经定义的 beans 对象进行应用。

@ComponentScan:注解会自动扫描指定包下的全部标有 @Component注解 的类,并注册成bean,当然包括 @Component 下的子注解@Service、@Repository、@Controller。

换句话说,注解了@SpringBootApplication,会提供如下功能:
(1)@Configuration:在Application类里加这样一段代码,

@Bean
public UserDAO getUserDAO(){
    return new UserDAO();
}


就相当于完成了这样一个spring的配置文件:

<beans>
        <bean id = "userDAO" class="com.user.UserDAO"></bean>
</beans>

 

(2)EnableAutoConfiguration:Spring Boot会自动根据你jar包的依赖来自动配置项目。

  例如当你项目下面有HSQLDB的依赖时,Spring Boot会创建默认的内存数据库的数据源DataSource,如果你自己创建了DataSource,Spring Boot就不会创建默认的DataSource。

(3)注解配置为:@SpringBootApplication(scanBasePackages = "com.chendeming")
则springboot启动会扫描com.chendeming下所有类,完成bean加载,完成依赖管理

 

扩展学习
  springboot配置入门
    http://www.cnblogs.com/larryzeal/p/5765945.html

  springboot启动器
    http://blog.csdn.net/chszs/article/details/50610474

springboot项目搭建

标签:enable   string   cti   app   parent   net   资源   web项目   control   

原文地址:https://www.cnblogs.com/chendeming/p/8443257.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!