本文整理汇总了Java中play.libs.Json.toJson方法的典型用法代码示例。如果您正苦于以下问题:Java Json.toJson方法的具体用法?Java Json.toJson怎么用?Java Json.toJson使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类play.libs.Json
的用法示例。
在下文中一共展示了Json.toJson方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getFlowApplicationNodes
import play.libs.Json; //导入方法依赖的package包/类
public static JsonNode getFlowApplicationNodes()
{
List<String> appList = getJdbcTemplate().queryForList(GET_FLOW_TREE_APPLICATON_NODES, String.class);
List<TreeNode> nodes = new ArrayList<TreeNode>();
if (appList != null && appList.size() > 0)
{
for (String app : appList)
{
TreeNode node = new TreeNode();
node.folder = true;
node.lazy = true;
node.title = app;
node.level = 1;
nodes.add(node);
}
}
return Json.toJson(nodes);
}
示例2: getFlowProjectNodes
import play.libs.Json; //导入方法依赖的package包/类
public static JsonNode getFlowProjectNodes(String app)
{
List<String> projectList = getJdbcTemplate().queryForList(GET_FLOW_TREE_PROJECT_NODES, String.class, app);
List<TreeNode> nodes = new ArrayList<TreeNode>();
if (projectList != null && projectList.size() > 0)
{
for (String project : projectList)
{
TreeNode node = new TreeNode();
node.folder = true;
node.lazy = true;
node.title = project;
node.parent = app;
node.level = 2;
nodes.add(node);
}
}
return Json.toJson(nodes);
}
示例3: loadTreeJsonNode
import play.libs.Json; //导入方法依赖的package包/类
public static JsonNode loadTreeJsonNode(String key) {
if (StringUtils.isNotBlank(key)) {
String treeName = Play.application().configuration().getString(key);
if (StringUtils.isNotBlank(treeName)) {
try {
return Json.parse(new FileInputStream(new File(treeName)));
} catch (Exception e) {
Logger.error(e.getMessage());
}
}
}
return Json.toJson("");
}
示例4: getFlowNodes
import play.libs.Json; //导入方法依赖的package包/类
public static JsonNode getFlowNodes(String app, String project)
{
List<Map<String, Object>> rows = null;
if (StringUtils.isBlank(project) || project.equalsIgnoreCase("root"))
{
rows = getJdbcTemplate().queryForList(GET_FLOW_TREE_FLOW_NODES_WITHOUT_PROJECT, app);
}
else
{
rows = getJdbcTemplate().queryForList(GET_FLOW_TREE_FLOW_NODES, app, project);
}
List<TreeNode> nodes = new ArrayList<TreeNode>();
if (rows != null)
{
for (Map row : rows)
{
TreeNode node = new TreeNode();
node.folder = false;
node.lazy = false;
node.title = (String)row.get("flow_name");
node.parent = project;
node.id = (Long)row.get("flow_id");
node.level = 3;
nodes.add(node);
}
}
return Json.toJson(nodes);
}