SpringBoot--2.第一个HelloWorld

  使用SpringBoot,要用JDK 1.8及以上,创建SpringBoot需要创建Maven工程,Packaging选项一定要选择jar类型,
SpringBoot--2.第一个HelloWorld_第1张图片
创建好之后,需要修改pom.xml,标准模板如下:


  4.0.0
  
  com.springboot
  springBoot-helloworld
  0.0.1-SNAPSHOT
  
   
        org.springframework.boot
        spring-boot-starter-parent
        1.5.2.RELEASE
         
   
   
   
        UTF-8
        UTF-8
        1.8
  
 
  
  
	
         org.springframework.boot
         spring-boot-starter-web
         
    
 
    
        org.springframework.boot
        spring-boot-starter-test
        test
    
  	
	
		junit
		junit
		test
	
  
 
  
    
      
        
            org.springframework.boot
            spring-boot-maven-plugin
        
      
    
  

修改了pom.xml之后,点击项目,右键–Maven-update project,即可把依赖的jar包下载下来。
SpringBoot--2.第一个HelloWorld_第2张图片
  在src/main/java目录下创建com.SpringBoot.HelloWorld包,新建Member.java文件,代码如下:

package com.SpringBoot.HelloWorld;

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

//RestController=/* @Controller + @ResponseBody*/
@RestController
@EnableAutoConfiguration
public class Member {
	@RequestMapping("/memberIndex")
	public String memberIndex(){
		return "HelloWorld";
	}
	
	public static void main(String[] args){
		SpringApplication.run(Member.class, args);
	}

}

  其中@RestController注解相当于@Controller+@ResponseBody两个注解的结合,返回json数据不需要在方法前面加@ResponseBody注解了,但使用@RestController这个注解,就不能返回jsp,html页面,视图解析器无法解析jsp,html页面,该类中的所有方法会返回json格式的数据。
  @EnableAutoConfiguration作用在于让 Spring Boot 根据应用所声明的依赖来对 Spring 框架进行自动配置
这个注解告诉Spring Boot根据添加的jar依赖猜测你想如何配置Spring。由于spring-boot-starter-web添加了Tomcat和Spring MVC,所以auto-configuration将假定你正在开发一个web应用并相应地对Spring进行设置。扫包的范围默认是在当前类里的。

package com.SpringBoot.HelloWorld;

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

//RestController=/* @Controller + @ResponseBody*/
@RestController
@EnableAutoConfiguration
public class Member {
	@RequestMapping("/memberIndex")
	public String memberIndex(){
		return "HelloWorld";
	}
	//整个SpringBoot程序入口
	public static void main(String[] args){
		SpringApplication.run(Member.class, args);
	}
}

启动这个程序,控制台会输出如下内容:
SpringBoot--2.第一个HelloWorld_第3张图片
打开浏览器,输入http://localhost:8080/memberIndex,会显示如下:
SpringBoot--2.第一个HelloWorld_第4张图片
  如果这个时候再在该包下添加一个类,因为@EnableAutoConfiguration只能扫描所在的类,所以要加上@ComponentScan注解:
SpringBoot--2.第一个HelloWorld_第5张图片

package com.SpringBoot.HelloWorld;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


//RestController=/* @Controller + @ResponseBody*/
@RestController
@EnableAutoConfiguration
@ComponentScan("com.SpringBoot.HelloWorld")//另其扫描当前包
public class Member {
	@RequestMapping("/memberIndex")
	public String memberIndex(){
		return "HelloWorld";
	}
	//整个SpringBoot程序入口
	public static void main(String[] args){
		SpringApplication.run(Member.class, args);
	}

}

加上@ComponentScan(“com.SpringBoot.HelloWorld”)之后,Index.java也能扫描到。

package com.SpringBoot.HelloWorld;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Index {
	
	@RequestMapping("/index")
	public String fun(){
		return "你好";
	}
}

SpringBoot--2.第一个HelloWorld_第6张图片
SpringBoot--2.第一个HelloWorld_第7张图片
但把@ComponentScan(“com.SpringBoot.HelloWorld”)加入某一个类,显然是不合理的。不妨把关键注解和启动代码单独拿出来放到一个启动类里面:
SpringBoot--2.第一个HelloWorld_第8张图片
Application.java

package com.SpringBoot.HelloWorld;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;

@EnableAutoConfiguration
@ComponentScan("com.SpringBoot.HelloWorld")
public class Application {

	//整个SpringBoot程序入口
		public static void main(String[] args){
			SpringApplication.run(Application.class, args);
		}
}

Index.java

package com.SpringBoot.HelloWorld;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Index {
	
	@RequestMapping("/index")
	public String fun(){
		return "你好";
	}
}

Member.java

package com.SpringBoot.HelloWorld;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

//RestController=/* @Controller + @ResponseBody*/
@RestController
public class Member {
	
	@RequestMapping("/memberIndex")
	public String memberIndex(){
		return "HelloWorld";
	}
	
}

这样每次启动那个启动类就可以了。
假如有多个包,如下:
SpringBoot--2.第一个HelloWorld_第9张图片
则可以在Application.java中的@ComponentScan注解中添加如下内容,即增加扫描包的范围
SpringBoot--2.第一个HelloWorld_第10张图片
Index2.java中代码:

package com.SpringBoot.HelloWorld2;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Index2 {
	
	@RequestMapping("/index2")
	public String fun1(){
		return "胜多负少代理费就是的";
	}

}

则可正常扫描多个包
SpringBoot--2.第一个HelloWorld_第11张图片
当然也可以使用@SpringBootApplication注解,该注解同时代表了如下多个注解:
SpringBoot--2.第一个HelloWorld_第12张图片
但该注解只能扫描当前类所在的包,不能扫描其他包。比如在Application.java中采用了该注解,
SpringBoot--2.第一个HelloWorld_第13张图片
则它只能扫描如下红圈中的:
SpringBoot--2.第一个HelloWorld_第14张图片
但是这时我需要扫描com.SpringBoot.HelloWorld2包中的类怎么办?这时需要把Application.java放到他们共同的上一级包中com.SpringBoot,如下图:
SpringBoot--2.第一个HelloWorld_第15张图片
当然eclipse不允许再建com.SpringBoot包,可以照上述红线所示把它放到层级目录下。这时两个包中的类都可以扫描到。

你可能感兴趣的:(Springboot)