博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot 搭建
阅读量:6407 次
发布时间:2019-06-23

本文共 2051 字,大约阅读时间需要 6 分钟。

1、使用Eclipse 建立Maven项目(webapp OR quickstart)

2、配置Maven,如下:

1  
2
org.springframework.boot
3
spring-boot-starter-parent
4
1.2.5.RELEASE
5
6
7 8
9
UTF-8
10
1.8
11
12 13
14
15
org.springframework.boot
16
spring-boot-starter-web
17
18
19 20
21
22
23
org.springframework.boot
24
spring-boot-maven-plugin
25
26
27

3、建立启动Application

1 package demo.web.application; 2 import org.springframework.boot.SpringApplication;   3 import org.springframework.boot.autoconfigure.SpringBootApplication; 4 import org.springframework.context.annotation.ComponentScan; 5  6 @SpringBootApplication  7 @ComponentScan(basePackages={"demo.web.*"})  8 public class Application { 9     public static void main(String[] args) {  10         SpringApplication.run(Application.class, args);  11     }  12 13 }

4、编辑Controller

1 package demo.web.controller; 2 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;   3 import org.springframework.web.bind.annotation.PathVariable;   4 import org.springframework.web.bind.annotation.RequestMapping;   5 import org.springframework.web.bind.annotation.RestController;   6    7 @RestController   8 @EnableAutoConfiguration 9 public class HelloController {10     11     @RequestMapping("/")  12     String home() {  13         System.out.println("ee");14         return "Hello World!";  15     }  16       17     @RequestMapping("/hello/{myName}")  18     String index(@PathVariable String myName) {  19         return "Hello "+myName+"!!!";  20     }  21 22 }

5、通过application.properties对项目进行配置

server.port=9000

项目文件布局如下:

启动Application程序,即可访问网站。

 

转载于:https://www.cnblogs.com/learnMoreEveryday/p/6771354.html

你可能感兴趣的文章
构建嵌入式Linux根文件系统
查看>>
Harbor 安装配置
查看>>
dubbo路由代码分析3(condition路由器)
查看>>
sqlite3注意的地方
查看>>
编程匠艺---内容摘要一
查看>>
Create a debian package
查看>>
新浪爱问免积分下载---
查看>>
EasyNetQ 是 RabbitMQ 的 .NET 开发包。
查看>>
centos Zimbra邮件服务器的安装与配置
查看>>
C++中的各种继承方式规则
查看>>
使用windb抓去dump文件
查看>>
__weak 修饰符
查看>>
Android: How To Decode ProGuard’s Obfuscated Code
查看>>
浏览器加载和渲染html的顺序
查看>>
JDBC编程要点
查看>>
mysql sql语句大全
查看>>
sphinx配置文件详解
查看>>
js 转换字符串 为 同名 函数
查看>>
ckplayer flashvars 参数说明
查看>>
linux下ftp服务器 proftpd 推荐 限制用户目录
查看>>