Spring Boot学习笔记1——搭建一个简单的Spring Boot项目

1.创建一个Maven项目导入相应的依赖


	4.0.0
	com.xx
	springboot-sgg
	0.0.1-SNAPSHOT

	
	
		org.springframework.boot
		spring-boot-starter-parent
		1.5.9.RELEASE
		
	

	
		
			org.springframework.boot
			spring-boot-starter-web
		
	

2.创建一个主程序类,这里需要注意我的这个主程序类是放在com.xx这个包下的,会自动扫描com.xx下的所有包

package com.xx;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/*
 * @SpringBootApplication用于标注一个主程序类,其底层@Import注解会将主配置类所在包下的所有子包里面的所有组件扫描到Spring容器中
 */
@SpringBootApplication
public class HelloWorldMainApplication {

	public static void main(String[] args) {
		//Spring启动入口
		SpringApplication.run(HelloWorldMainApplication.class, args);
	}
}

3.写一个Controller用来测试

package com.xx.controller;

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

@Controller
public class HelloController {

	@ResponseBody
	@RequestMapping("/hello")
	public String hello() {
		return "HelloWorld!";
	}
}

4.运行主程序类,输入http://localhost:8080/hello

你可能感兴趣的:(java)