如果你是Android Studio,想要启动服务器玩一玩,请使用右侧边栏的Gradle里的 Tasks > application > bootRun
如果你是IntelliJ IDEA,运行栏里直接有个JsonDemoApplication的启动项,运行即可。
或者点到JsonDemoApplication
中运行main方法。
-
去
Student
类中,添加Getter Setter等JavaBean的方法 -
去
StudentController
类中, 完成listStudentsUsingGson
和createStudentsUsingGson
这两个方法 -
运行
JsonDemoApplicationTests
进行测试。 IntelliJ IDEA的操作步骤如下,Android Studio的只需要点Run就行。
如果同学们遇到错误提示:
Warning: Working directory '...../.idea/modules' doesn't exist
请把 Run/Debug Configurations
里的Working directory
改成%MODULE_WORKING_DIR%
(善用Ctrl+Shift+A
(⌘+⇧+A
) 搜索功能)
test.http
是个请求的模拟发送器。 使用IntelliJ IDEA的同学可以直接点每一行左边的运行 执行请求。
期望同学们能得到:white_check_mark:All Green的正确结果:smiley:
参考答案请切换到 answer 分支