SpringBoot学习笔记-HelloWorld

一个最简单的springboot应用,maven只需要导入下面依赖

<parent>

   <groupId>org.springframework.boot</groupId>

   <artifactId>spring-boot-starter-parent</artifactId>

   <version>1.4.0.RELEASE</version>

  </parent>

 <dependency>

   <groupId>org.springframework.boot</groupId>

   <artifactId>spring-boot-starter-web</artifactId>

  </dependency>

主程序只需要添加@SpringBootApplication,一个最简单的web应用就可以运行了,不需要web.xml,不需要配置web服务器,太简单了!

package com.endless.springboot.helloworld;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@SpringBootApplication
public class App {
	
	@RequestMapping("sayHello")
	public String sayHello(){
		return "Hello SpringBoot";
	}
    public static void main( String[] args ){
    	SpringApplication.run(App.class,args);
    }
}

直接运行main方法即可,可以看到springboot启动了tomcat的8080端口

204441_RFnT_2323617.png 204447_KAfb_2323617.png 

如果想改端口,只需要添加一个application.properties文件,配置下server.port即可

204455_U4Yh_2323617.png 

添加以下插件,使用mvn package打包成一个jar,然后使用java -jar xx.jar独立运行 

  <plugin>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-maven-plugin</artifactId>

  </plugin>

204503_re9t_2323617.png 204516_JHry_2323617.png

 

这个jar包内会打包tomcat和spring等依赖

204526_7QQh_2323617.png 

完整的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>com.endless</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.4.0.RELEASE</version>
  </parent>
  
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
  		<dependency>
  			<groupId>org.springframework.boot</groupId>	
  			<artifactId>spring-boot-starter-web</artifactId>
  		</dependency>
  	  	<dependency>
      		<groupId>junit</groupId>
      		<artifactId>junit</artifactId>
     	 	<scope>test</scope>
    	</dependency>
  </dependencies>
 
  <build>
  	<plugins>
  		<plugin>
  			<groupId>org.springframework.boot</groupId>
  			<artifactId>spring-boot-maven-plugin</artifactId>
  		</plugin>
  	</plugins>
  </build>

</project>

 

转载于:https://my.oschina.net/Endless2010/blog/1542052

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值