博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot在无网络的环境下运行
阅读量:6292 次
发布时间:2019-06-22

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

首先创建一个maven项目,和创建一个Spring项目一样

在pom文件中引入相关的依赖,依赖是以前引过的

org.springframework.boot
spring-boot-starter-parent
2.0.3.RELEASE
4.0.0
springboot-02
war
springboot-02 Maven Webapp
http://www.example.com
UTF-8
UTF-8
1.8
junit
junit
4.11
test
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
springboot-02

编写的Controller和SpringBoot一样

package cn.studio.controller;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;/** * Created by mycom on 2018/6/22. */@SpringBootApplication@RestControllerpublic class HelloController {    @RequestMapping("/hello")    public Object hello(){        return "你好我好";    }    public static void main(String[] args) {                SpringApplication.run(HelloController.class, args);    }}

 

转载于:https://www.cnblogs.com/my-123/p/9214563.html

你可能感兴趣的文章
聊天界面图文混排
查看>>
控件的拖动
查看>>
svn eclipse unable to load default svn client的解决办法
查看>>
Android.mk 文件语法详解
查看>>
QT liunx 工具下载
查看>>
内核源码树
查看>>
Java 5 特性 Instrumentation 实践
查看>>
AppScan使用
查看>>
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>