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

springboot入门

时间:2017-09-17 00:22:52      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:isp   bsp   完整   images   instance   hub   logo   scope   ips   

 

1、在eclipse中创建一个maven项目

  (创建过程在这就省略了)

2、在pom文件中增加springboot的相关配置

  增加springboot的基础配置

  技术分享

  增加springboot  web

    技术分享

完整的pom文件

  

技术分享
<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>4.0.0</modelVersion>

    <groupId>zl</groupId>
    <artifactId>springboot</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>springboot</name>
    <url>http://maven.apache.org</url>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.2.RELEASE</version>
    </parent>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>
pom.xml

3、编写springboot的入口程序

    技术分享

4、编写controller

    技术分享

5、启动项目(只需要在springboot入口程序直接Run as     java application 就可以了)    

    技术分享

  启动的时候会打印spring的logo,这是默认的,需要修改的话只需要在/src/main/resources目录下增加banner.txt文件,那样子项目启动的时候就会打印你自定义的logo,

  可通过这个网站http://patorjk.com/software/taag生成你需要的字符

  例如:

    技术分享

6、测试

  备注:默认启动的时8080 端口,这里我在springboot的默认配置文件application.properties中设置了server.port=8090

  技术分享

 

完整代码

 

springboot入门

标签:isp   bsp   完整   images   instance   hub   logo   scope   ips   

原文地址:http://www.cnblogs.com/gulang-jx/p/7533263.html

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