摘要:
因springboot内嵌tomcat或jetty使得我们没法去操作服务: 因此,常常是服务起来后,要重启时会端口占用,我们只能无情的kill掉端口。 不过spring也设置有配置停止的请求: Application.properties中添加: 在pom.xml中添加: 此时,需要停止服务时,只需 阅读全文
摘要:
对list类型的转化: GSON gson = new GSON(); gson.fromJson(strJson, User.class); //对象转化 gson.fromJson(respDto.getOptions(), new TypeToken<List<Map<String, Stri 阅读全文