Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,32 @@
本项目采用spring boot + mybatis的架构,以后有需要可以加入dubbo

开发ide最好使用intellij idea

/**
* Created by ${zz} on 2018
* 系统架构师 : 张老C
* 后台编码核心 : 孙带舅
* 后端2个月未发工资者 : Java体委
* 前端混吃等死途虎 : 实名工程师ChenZhiTao
* 天龙18K ④总: 啥也不会丶4某人
* iOS上班砍传奇: 成都爱情故事李老八
* 头条透批太难了: 北邮final哈狗
* 网吧摸鸡我不是富二代: ⑥仔
* 龟谷三大five只会买书:舒林睿
* 龟谷三大five进入动画世界: yellow敖子
* 东南嘴臭男孩: nmsl李子宁
* 龟谷第一嘴臭牌面: 饿了么豪
* 电科大带明星: 二阵风
* 川大寻一Java实习位置: 西某人
* 谈场真真正正滴恋爱: 真真
* 天龙数模比赛: 123
* 龟谷第一带秀: 我摇
* 全是节目效果: 成都混吃等死
* 加班累死完事了: 客服专员tankdd
* 广州车震丝袜: Max
* 虎牙不给我冲yy会员: 啥也不会C++丶之越
* 通宵就完事了: A某人
* 我起了144 一枪秒了: 有什么好说的自闭房仔
* 山管火山Chr: 我的夏天
* 小公司爬,准备第三个面试 : 没牌面的实习弟弟
*/
5 changes: 5 additions & 0 deletions src/main/java/com/abstractfive/JavaApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;

@SpringBootApplication
public class JavaApplication {

public static void main(String[] args) {
SpringApplication.run(JavaApplication.class, args);
}
@GetMapping("/hello")
public String hello() {
return "hello nmsl 李子宁 ";
}
}