欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot入门

程序员文章站 2022-03-09 20:16:15
...

加粗样式

1.MAVEN的设置

给MAVEN的settings.xml的配置文件profiles标签添加
			<id>jdk1.7</id>    
			<activation>    
				<activeByDefault>true</activeByDefault>    
				<jdk>1.7</jdk>    
			</activation>    
			<properties>    
				<maven.compiler.source>1.7</maven.compiler.source>    
				<maven.compiler.target>1.7</maven.compiler.target>    
				<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>    
			</properties>    
		</profile>  

2.Spring Boot 练习

	浏览器发送请求,服务器接收请求并处理,响应Hello World!字符串
	1,创建一个maven工程(jar)
	2,导入依赖Spring Boot相关的依赖
   <parent>
   	<groupId>org.springframework.boot</groupId>
   	<artifactId>spring-boot-starter-parent</artifactId>
   	<version>1.5.9.RELEASE</version>
   </parent>
   <dependencies>
   	<dependency>
   		<groupId>org.springframework.boot</groupId>
   		<artifactId>spring-boot-starter-web</artifactId>
   	</dependency>
   </dependencies>

3.编写一个主程序;启动Spring Boot应用

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 *@SpringBootApplication 来标注一个主程序类,说明这是一个Spring Boot应用
 */

@SpringBootApplication
public class HelloWorld {

	public static void main(String[] args) {
		// Spring应用启动起来 
		SpringApplication.run(HelloWorld.class, args);
	}

}

4.编写相关的Controller,Service,Dao

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloContrller {
	@RequestMapping("/hello")
	@ResponseBody
	public String hello(){
		return "Hello World!";
	}
}

5.运行主程序

6.简化部署

<!--这个插件, 可以将应用打包成一个可执行的jar包  -->
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
	```
	将这个应用打成jar包,直接用 java -jar的命令进行执行
相关标签: 入门