本文整理匯總了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);
}