BME学习总结03

BME学习总结03
//deployafterInfo.usl
<bme:view>

<bme:panel id="deployafterID" title="DeployMent Success Info">

<bme:datagrid id="deployafterinfoID" property="listDeploySuccess" viewmode="view">
<bme:column sort="true" label="Execute Group Available for Deployment">${deployMentName}</bme:column>
<bme:column sort="true" label="Deploymentc Success">${isDeployOK}</bme:column>
</bme:datagrid>

</bme:panel>

<bme:panel id="deployafterID" title="DeployMent Failure Info">

<bme:datagrid id="deployafterinfoID" property="listDeployFailure" viewmode="view">
<bme:column sort="true" label="Execute Group Available for Deployment">${deployMentName}</bme:column>
<bme:column sort="true" label="Deploymentc Failure">${isDeployOK}</bme:column>
</bme:datagrid>

</bme:panel>

<bme:buttongroup align="right">
<bme:button value="Blak">
<bme:fire event="click" mode="navigate" targetstep="InitEsbBar" service="">
</bme:fire>
</bme:button>
</bme:buttongroup>

</bme:view>

//esbbardeployinfo.usl
<bme:view>

<bme:panel title="BAR PATH" id="barpath">
<bme:block lineend="true" cols="1">
<bme:cell>
<bme:field label="bar path"><bme:addon>${serverBARPath}</bme:addon></bme:field>
</bme:cell>
</bme:block>
</bme:panel>

<bme:panel id="barinfos" title="BAR Info" >

<bme:datagrid id="ESBbarinfoID" property="barInfos" viewmode="view">

<bme:column sort="true" label="entryName" >${entryName}</bme:column>
<bme:column sort="true" label="entryType">${entryType}</bme:column>
<bme:column sort="true" label="modifiedTime">${updatetime}</bme:column>
<bme:column sort="true" label="entrySize">${entrySize}</bme:column>
</bme:datagrid>
</bme:panel>

<bme:panel id="ExecuteGroupInfoID" title="Manager Queue(Host Name):Prot-Broker Name/Execute Group">
<bme:datagrid id="executeGroupInfoID" property="listDeploymentEx"  viewmode="view">
<bme:column property="selectDeployInfoID" checkboxhead="true" key="${deployMentName}" multi="true" width="8%">
</bme:column>
<bme:column sort="true" label="Execute Group Available for Deployment">${deployMentName}</bme:column>

</bme:datagrid>
<bme:buttongroup align="right">
<bme:button value="Deployment">
<bme:fire event="click" mode="navigate" service="deployBAR(‘%{#BMEModel}‘)" targetstep="deployAfter"></bme:fire>
</bme:button>
</bme:buttongroup>

</bme:panel>

</bme:view>

BME学习总结03,布布扣,bubuko.com

时间: 2024-10-03 21:41:21

BME学习总结03的相关文章

Rhythmk 学习 Hibernate 03 - Hibernate 之 延时加载 以及 ID 生成策略

Hibernate 加载数据 有get,跟Load 1.懒加载: 使用session.load(type,id)获取对象,并不读取数据库,只有在使用返回对象值才正真去查询数据库. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 @Test    public void  test1()    {        Session session = null;         try {             session = Hiber

BME学习总结01

BME学习总结01 学习BME要明确Service,Dao,Do,Entity的含义:Service:是对页面提供的方法接口,Dao是对接口的实现,Do是对页面和Dao是要用到的属性定义,Entity大多数的情况下是对数据库表实体的定义.//得到数据源连接.BmeJpaTemplate conn=new BmeJpaTemplate();//业务和页面跳转.XML<?xml version="1.0" encoding="UTF-8"?><busi

BME学习总结02

//查询数据库的SQL.XML<?xml version="1.0" encoding="UTF-8"?><sqlmap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.huawei.com/bme/schema/namingsql"> <resultMa

SQL 学习日志03

添加表内容: insert into table_name (字段1,字段2,...) values (值1,值2,....) 查询表内容: select * from table_name select 字段1,字段2 from table_name select top 10 * from table_name select * from table_name where 字段=值 select * from table_name where 字段<>值 select * from tab

python学习笔记(03):函数

默认参数值:   只有在行参表末尾的哪些参数可以有默认参数值,即 def func(a, b=5 )#有效的 def func( a=5,b )#无效的 关键参数: #!/usr/bin/python # Filename: func_key.py def func(a, b=5, c=10): print 'a is', a, 'and b is', b, 'and c is', c func(3, 7) func(25, c=24) func(c=50, a=100) #输出: $ pyth

HTTP 学习笔记03

通用信息头 Cache-Control : no-cache(不缓存当前请求) [*] Connection:close(返回当前请求后立即断开)[*] Date:...(HTTP消息产生的时间) Pragma:no-cache (不缓存) [*] Trailer:Date(哪些能放到实体内容后的头字段) Transfer-Encoding:chunked (指定传输编码方式)[*] Upgrade:HTTP/2.0,SHTTP/1.3 (支持的版本) Via:HTTP/1.1 Proxy1,H

C++ GUI Qt4学习笔记03

C++ GUI Qt4学习笔记03 qtc++spreadsheet文档工具resources 本章介绍创建Spreadsheet应用程序的主窗口 1.子类化QMainWindow 通过子类化QMainWindow可以创建一个窗口 图形用户界面(GUI)应用程序通常会使用很多的图片,最常见的为应用程序提供图片的方法是使用Qt的资源机制(resource mechanism) 使用Qt资源系统,必须创建一个资源文件,并且在识别该资源文件的.pro文件中添加一行代码. RESOURCES = spr

mongodb 学习笔记 03 -- 查询表达式

mongodb 学习笔记 03 – 查询表达式 不等于,大于,小于 !=: db.stu.find({name:{$ne:'billvsme'}}) 名字不是'billvsme' > : db.stu.find({age:{$gt:18}}) 年纪大于18 < : db.stu.find({age:{$lt:18}}) 年纪小于18 >=: $gte <=: $lte in/not in/all $in :db.goods.find(stu_id:{$in:[93001,93002

Android自定义View学习笔记03

Android自定义View学习笔记03 预备知识 BitMap类 BitMap位图类,其中有一个嵌套类叫Bitmap.Config,内部有四个枚举值.这个类的作用是定义位图存储质量,即存储一个像素的位数,以及是否能显示透明.半透明颜色(Possible bitmap configurations. A bitmap configuration describes how pixels are stored. This affects the quality (color depth) as w