xsi:schemaLocation=“http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd”>
4.0.0
com.hedong
SpringBootDemo
1.0-SNAPSHOT
SpringBootDemo
http://www.example.com
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
org.springframework.boot
spring-boot-starter-parent
1.5.9.RELEASE
org.springframework.boot
spring-boot-starter-web
junit
junit
4.11
test
第三步:在pom.xml文件上右键选择maven→reimport导入依赖,完成后左边External Libraries下将会自动导入很多关于Spring的依赖。
|
|
第四步:写一个控制器如下,然后写一个main方法把程序跑起来
HelloController.java
package com.hedong.controller;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController//相当于声明Controller - 提共restful 风格
@EnableAutoConfiguration//自动配置,不需要写spring的配置文件
public class HelloController {
@RequestMapping(“/hello”)//映射路径
@ResponseBody//响应体
public String hello() {
return “Hello World”;
总结
总的来说,面试是有套路的,一面基础,二面架构,三面个人。
最后,小编这里收集整理了一些资料,其中包括面试题(含答案)、书籍、视频等。希望也能帮助想进大厂的朋友
最后,小编这里收集整理了一些资料,其中包括面试题(含答案)、书籍、视频等。希望也能帮助想进大厂的朋友**
[外链图片转存中…(img-ssBtMmG9-1719171816089)]
[外链图片转存中…(img-nQMVtHwT-1719171816092)]