使⽤eclipse搭建springboot框架搭建
传统spring 项⽬框架的搭建需要⼤量的配置,⽽且项⽬的开发,测试都需要依赖服务器,使得开发相对⽐较耗时。spring boot 很好的解决了上述问题。它把繁琐的spring配置进⾏了分装,搭建spring boot 框架⼀般⽽⾔⼏乎不需要对spring做任何的配置便可运⾏。另外,由于spring boot⾃带服务器,所以项⽬可以以jar的形式直接运⾏,便利了开发及测试的部署环节。下⾯对spring boot框架的搭建及运⾏做简单的介绍。
1. 配置sts插件
点击Eclipse上的help——>Eclipse marketplace…——>Popular
到STS插件
如果左下⾓显⽰install,则说明没有安装STS,点击install完成STS安装
2. 新建Spring Start Project
File——>New ——>Other…
到Spring Boot下⾯的Spring Start Project点击新建项⽬
怎么把项目导入到eclipse
点击next,视情况修改name,Group,Artifact,Version,Package等信息
点解next,添加所需⽀持,作为⽰例,这⾥只添加web⽀持
点解finish,稍等⽚刻完成对项⽬创建
在src/main/java下的com.demo⾥新建controller包,并新建TestMyDemoController类
类中代码如下:
package com.ller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/")
public class TestMyDemoController {
@RequestMapping("/hello")
public String hello(String from) {
return “hello “+from +” returned by server”;
}
}
打开MydemoApplication类,右键——>run as ——>spring boot app启动项⽬
返回hello client returned by server表⽰项⽬搭建成功
4.部署
在项⽬上右键——>run as——>maven install打包运⾏完成后刷新target,这时候在target下就出现打好的jar
打开target⽂件夹,双击mydemo-0.0.1-SNAPSHOT.jar启动jar
返回hello client returned by server
也可以cmd回车打开dos页⾯,输⼊java -jar jar所在全路径启动项⽬
返回hello client returned by server
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论