博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring boot学习二
阅读量:6563 次
发布时间:2019-06-24

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

hot3.png

学习一代码的基础上进行修改  SpringApplication.run 代码保留

Maven配置

UTF-8
1.8
org.springframework.boot
spring-boot-starter-parent
1.4.4.RELEASE
org.springframework.boot
spring-boot-starter-web

java 代码

@RestController@EnableAutoConfigurationpublic class FirstControlle{        @RequestMapping(value="/")//是springmvc中的注解    String home(){        return "helloworld";    }   }

启动  main 方法  自动扫描  

浏览器 localhost:8080/   启动访问

转载于:https://my.oschina.net/u/943316/blog/910103

你可能感兴趣的文章
UIImage保存到沙盒
查看>>
Linux的50个基本命令
查看>>
std::map 的swap错用
查看>>
钓鱼网站-现代网络“李鬼”
查看>>
mac/Linux源码安装TensorFlow
查看>>
动态排序JavaBean
查看>>
26 计算用户输入的内容中索引为奇数并且对应的元素为数字的个数的两种方法...
查看>>
iOS 色值 转换 干货
查看>>
利用Python实现12306爬虫--查票
查看>>
day7——Python的帮助
查看>>
js-键盘回车搜索enter
查看>>
学习编译原理的心得
查看>>
安装pip和pylint
查看>>
POJ 3974 Palindrome
查看>>
fix issue on ImportError: libGeoIP.so.1
查看>>
linear-gradient线性渐变
查看>>
POJ 2965 The Pilots Brothers' refrigerator【枚举】
查看>>
我的天$删除注册表$安装mysql最后一步不能启动服务的解决办法
查看>>
Set Matrix Zeroes
查看>>
循环——批量处理数据
查看>>