- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中io.kaif.service.ZoneService.listAdministratorsWithCache()
方法的一些代码示例,展示了ZoneService.listAdministratorsWithCache()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneService.listAdministratorsWithCache()
方法的具体详情如下:
包路径:io.kaif.service.ZoneService
类名称:ZoneService
方法名:listAdministratorsWithCache
暂无
代码示例来源:origin: kaif-open/kaif
@ApiOperation(value = "[public] List administrators of the zone", notes = "List username of administrators of the zone")
@RequiredScope(PUBLIC)
@RequestMapping(value = "/{zone}/administrator/username", method = RequestMethod.GET)
public List<String> listAdministrators(ClientAppUserAccessToken token,
@PathVariable("zone") String zone) {
return zoneService.listAdministratorsWithCache(Zone.valueOf(zone));
}
}
代码示例来源:origin: kaif-open/kaif
@RequestMapping("/{zone}/debates/{articleId}")
public Object articleDebates(@PathVariable("zone") String rawZone,
@PathVariable("articleId") FlakeId articleFlakeId,
HttpServletRequest request) throws IOException {
return resolveZone(request, rawZone, zoneInfo -> {
return new ModelAndView("article/debates")//
.addObject("zoneInfo", zoneInfo)
.addObject("recommendZones", zoneService.listRecommendZones())
.addObject("article", articleService.loadArticle(articleFlakeId))
.addObject("zoneAdmins",
zoneService.listAdministratorsWithCache(zoneInfo.getZone())
.stream()
.collect(Collectors.joining(",")))
.addObject("debateTree", articleService.listBestDebates(articleFlakeId, null));
});
}
代码示例来源:origin: kaif-open/kaif
public ZonePageModelView(ZoneInfo zoneInfo, ZoneService zoneService) {
super("/zone/zone-page");
addObject("zoneInfo", zoneInfo);
addObject("recommendZones", zoneService.listRecommendZones());
addObject("administrators", zoneService.listAdministratorsWithCache(zoneInfo.getZone()));
}
}
代码示例来源:origin: kaif-open/kaif
@Test
public void listAdministrators() {
Zone zone = Zone.valueOf("foo");
assertTrue(service.listAdministratorsWithCache(zone).isEmpty());
accountDao.changeTotalVotedDebate(citizen.getAccountId(), 30, 0);
service.createByUser("foo", "this is aaa2", citizen);
List<String> administerNames = service.listAdministratorsWithCache(zone);
assertEquals(asList(citizen.getUsername()), administerNames);
}
}
代码示例来源:origin: kaif-open/kaif
@Test
public void listAdministrators() throws Exception {
when(zoneService.listAdministratorsWithCache(Zone.valueOf("foo"))).thenReturn(asList("admin1",
"admin2"));
oauthPerform(user, get("/v1/zone/foo/administrator/username")).andExpect(status().isOk())
.andExpect(jsonPath("$.data[0]", is("admin1")))
.andExpect(jsonPath("$.data[1]", is("admin2")));
}
}
代码示例来源:origin: kaif-open/kaif
@Test
public void hotArticlesWithPaging() throws Exception {
Zone z = zoneInfo.getZone();
when(zoneService.loadZone(z)).thenReturn(zoneInfo);
Article article1 = article(z, "javascript discussion");
Article article2 = article(z, FlakeId.fromString("phpone"), "php-lang discussion");
when(articleService.listHotZoneArticles(z, FlakeId.fromString("123456"))).thenReturn(//
asList(article1, article2));
when(zoneService.listAdministratorsWithCache(z)).thenReturn(asList("admin1", "admin2"));
mockMvc.perform(get("/z/programming?start=123456"))
.andExpect(content().string(containsString("/css/z-theme-default.css")))
.andExpect(content().string(containsString("programming-alias")))
.andExpect(content().string(containsString("php-lang")))
.andExpect(content().string(containsString("admin1")))
.andExpect(content().string(containsString("href=\"/z/programming?start=phpone\"")));
}
代码示例来源:origin: kaif-open/kaif
@Test
public void articleDebates() throws Exception {
Zone z = zoneInfo.getZone();
FlakeId articleId = FlakeId.fromString("aaa");
Article article = article(z, "erlang discussion");
List<Debate> debates = asList(//
debate(article, "ERLANG is bad", null), //
debate(article, "JAVA is better", null));
when(zoneService.loadZone(z)).thenReturn(zoneInfo);
when(articleService.loadArticle(articleId)).thenReturn(article);
when(articleService.listBestDebates(articleId, null)).thenReturn(DebateTree.fromDepthFirst(
debates));
when(zoneService.listAdministratorsWithCache(z)).thenReturn(asList("admin1", "admin2"));
mockMvc.perform(get("/z/programming/debates/aaa"))
.andExpect(view().name("article/debates"))
.andExpect(content().string(containsString("/css/z-theme-default.css")))
.andExpect(content().string(containsString("programming-alias")))
.andExpect(content().string(containsString("erlang discussion")))
.andExpect(content().string(containsString("ERLANG is bad")))
.andExpect(content().string(containsString("JAVA is better")))
.andExpect(containsText("data-zone-admins=\"admin1,admin2\""))
.andExpect(containsDebateFormTemplate());
}
本文整理了Java中io.kaif.service.ZoneService类的一些代码示例,展示了ZoneService类的具体用法。这些代码示例主要来源于Github/Stackoverflow/M
本文整理了Java中io.kaif.model.zone.Zone类的一些代码示例,展示了Zone类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一
本文整理了Java中io.kaif.service.ZoneService.createByUser()方法的一些代码示例,展示了ZoneService.createByUser()的具体用法。这些代
本文整理了Java中io.kaif.service.ZoneService.isZoneAvailable()方法的一些代码示例,展示了ZoneService.isZoneAvailable()的具体
本文整理了Java中io.kaif.service.ZoneService.listZoneAtoZ()方法的一些代码示例,展示了ZoneService.listZoneAtoZ()的具体用法。这些代
本文整理了Java中io.kaif.service.ZoneService.listCitizenZones()方法的一些代码示例,展示了ZoneService.listCitizenZones()的
本文整理了Java中io.kaif.service.ZoneService.listAdministratorsWithCache()方法的一些代码示例,展示了ZoneService.listAdmi
本文整理了Java中io.kaif.service.ZoneService.loadZone()方法的一些代码示例,展示了ZoneService.loadZone()的具体用法。这些代码示例主要来源于
本文整理了Java中io.kaif.model.zone.Zone.valueOf()方法的一些代码示例,展示了Zone.valueOf()的具体用法。这些代码示例主要来源于Github/Stacko
本文整理了Java中io.kaif.model.zone.ZoneInfo.isHideFromTop()方法的一些代码示例,展示了ZoneInfo.isHideFromTop()的具体用法。这些代码
本文整理了Java中io.kaif.model.zone.ZoneInfo.getCreateTime()方法的一些代码示例,展示了ZoneInfo.getCreateTime()的具体用法。这些代码
本文整理了Java中io.kaif.model.zone.ZoneInfo.getVoteAuthority()方法的一些代码示例,展示了ZoneInfo.getVoteAuthority()的具体用
本文整理了Java中io.kaif.model.zone.Zone.tryFallback()方法的一些代码示例,展示了Zone.tryFallback()的具体用法。这些代码示例主要来源于Githu
本文整理了Java中io.kaif.model.zone.ZoneInfo.withAdmins()方法的一些代码示例,展示了ZoneInfo.withAdmins()的具体用法。这些代码示例主要来源
本文整理了Java中io.kaif.model.zone.ZoneInfo.createKaif()方法的一些代码示例,展示了ZoneInfo.createKaif()的具体用法。这些代码示例主要来源
本文整理了Java中io.kaif.model.zone.ZoneInfo.getAliasName()方法的一些代码示例,展示了ZoneInfo.getAliasName()的具体用法。这些代码示例
本文整理了Java中io.kaif.model.zone.ZoneInfo.getTheme()方法的一些代码示例,展示了ZoneInfo.getTheme()的具体用法。这些代码示例主要来源于Git
本文整理了Java中io.kaif.model.zone.ZoneInfo.getWriteAuthority()方法的一些代码示例,展示了ZoneInfo.getWriteAuthority()的具
本文整理了Java中io.kaif.model.zone.ZoneInfo.getDebateAuthority()方法的一些代码示例,展示了ZoneInfo.getDebateAuthority()
我是一名优秀的程序员,十分优秀!