MessageParse Activity. GlueMessageParse Activity는 TC(String) 또는 File에 담긴 TC(String) 를 Layout으로 Parse하여 GlueMessage Instance를 생성하는 기능을
수행한다.
byte parsing 시 Encoding 우선순위는 다음과 같다.
1. charset-name property
2. charset property
3. jvm default
Activity Property
- layout : (필수) applicationContext.xml의 GlueLayoutManager bean id.
- message-id : (선택) msg key. layout/{message-id}-msg.xml 참고 근거.
[ default ] ctx.get("ReceiveTC")의 값에서 추출함.
String s = (String)ctx.get("ReceiveTC");
String msg_id = s.substring(0, id_length);
- id-length : (선택) "ReceiveTC"에 해당하는 String의 substring 기준. message-id가 정의되어 있는 경우, id-length는 사용되지 않음.
[ default ] : 8
- charset : (선택) ParseType이 byte 일 경우 사용됨. 고정값.
- charset-name : (선택) ParseType이 byte 일 경우 사용됨. 동적값.
예제
사용 예# 1
- 최소사용
사용 예# 2
- message-id 가 수신Data["ReceiveTC"] 에서 추출하는 것과 다를 경우
사용 예# 3
- message-id 가 주어지지 않아 수신Data["ReceiveTC"] 에서 추출해야하는 경우.
사용 예# 4
- charset-name 사용시.. ctx.get(this.getProperty("charset-name")) 의 값이 사용됨.
사용 예# 5
- charset 사용시 activity property value가 사용됨.
참고 : applicationContext.xml
참고 : Java Code (Custom)
ctx.put("encoding", "UTF-8");
참고 : glue.properties
msg.parsing.type=byte
참고 : GlueConText 구성 - ReceiveTC, ReceiveTCType은 필수.
ctx.put("ReceiveTC", "MSGFW001R10aaa seoul ");
ctx.put("ReceiveTCMsg", "MSGFW001R10aaa seoul ");
ctx.put("ReceiveTCType", "T")
//ctx.put("ReceiveTC", new File("/APP/CHAIN/MSGFW002_20130201.dat"));
//ctx.put("ReceiveTCMsg", "MSGFW002/APP/CHAIN/MSGFW002_20130201.dat");
//ctx.put("ReceiveTCType", "F")