博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring-boot入门
阅读量:6266 次
发布时间:2019-06-22

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

Eclipse中安装STS插件

(1)在线安装

  Help--Eclipse Marketplace

  搜索“STS”,点击“install”安装

  

 

  后面就是一直下一步或者完成

(2)离线安装

  打开网页 http://spring.io/tools/sts/all

  下载适合自己的eclipse版本的STS压缩包

  

  下载后,在eclipse操作: Help--Install New Software--Add--Archive,添加已下载的zip包

  

  安装有Spring IDE字样的插件即可,取消勾选自动更新,接下来就有Next就点Next,有Finish就点Finish

  

2. 创建Spring-boot项目

  新建->其它

  

  我这里没啥要改的,默认demo就行

  

  下面其他第三方库可以一个都不加入,可以在使用的时候再pom里面再次添加,如果知道需要哪些也可以提前勾上

  

 

   完成

 

3. 运行Spring-boot项目

(1)右键DemoApplication中的main方法,Run As -> Spring Boot App,项目就可以启动了

 

1 package com.example.demo; 2  3 import org.springframework.boot.SpringApplication; 4 import org.springframework.boot.autoconfigure.SpringBootApplication; 5  6 @SpringBootApplication 7 public class DemoApplication { 8  9     public static void main(String[] args) {10         SpringApplication.run(DemoApplication.class, args);11     }12 }

 

(2)如果要运行hello world,则使用@RestController注解,并且添加hello方法

   得提前引入web相关的依赖,如果之前勾选了,就不用再加了

  

1         
2
org.springframework.boot
3
spring-boot-starter-web
4

 

1 package com.example.demo; 2  3 import org.springframework.boot.SpringApplication; 4 import org.springframework.boot.autoconfigure.SpringBootApplication; 5 import org.springframework.web.bind.annotation.RequestMapping;  6 import org.springframework.web.bind.annotation.RestController;  7    8 @RestController 9 @SpringBootApplication10 public class DemoApplication {11     12     @RequestMapping("/") 13     public String hello(){ 14          return"Hello world!"; 15      } 16     public static void main(String[] args) {17         SpringApplication.run(DemoApplication.class, args);18     }19 }

 

  

  如何运行我们的Application,看到hello world的输出呢?

  第一种方式是直接运行main方法:

  选中DemoApplication的main方法 -> 右键 -> Run as ->Java Applicacation,之后打开浏览器输入地址:http://127.0.0.1:8080/ 或者http://localhost:8080/就可以看到Hello world!了。

  第二种方式:

  右键project –> Run as –> Maven build –> 在Goals里输入spring-boot:run ,然后Apply,最后点击Run

 

4. 打包Spring-boot项目

1.命令:clean package

  

2.执行命令:java –jar xxxxxx.jar

 

转载于:https://www.cnblogs.com/zhuimengdeyuanyuan/p/7942570.html

你可能感兴趣的文章
C# 使用WinRar命令压缩和解压缩
查看>>
linux学习笔记一----------文件相关操作
查看>>
Mono for Android 优势与劣势
查看>>
服务器端开发技术
查看>>
Python3中urllib详细使用方法(header,代理,超时,认证,异常处理)
查看>>
ajax提交多个对象,使用序列化表单和FormData
查看>>
深入分析由前序和中序重构二叉树问题
查看>>
leetcode 题解 || Valid Parentheses 问题
查看>>
将图片转成base64字符串并在JSP页面显示的Java代码
查看>>
什么是WeakHashMap--转
查看>>
js 面试题
查看>>
第二十二节,三元运算
查看>>
Yacc 与 Lex 快速入门
查看>>
Unity中HDR外发光的使用
查看>>
Flume负载均衡配置
查看>>
Ajax详解
查看>>
Ubuntu C/C++开发环境的安装和配置
查看>>
百世汇通快递地区选择插件,单独剥离
查看>>
Linux系统调用---同步IO: sync、fsync与fdatasync【转】
查看>>
【MyBatis学习06】输入映射和输出映射
查看>>