クラスローダーとJ2EEパッケージング戦略を理解する - 第3回「J2EEパッケージング戦略を理解する - 恐怖のドッペルゲンガー」

思えばWebLogicのAPP-INFは便利だった.

それはそうと,MANIFEST.MFのClass-Pathエントリは,

Manifest-Version: 1.0
Class-Path: utility.jar
 commons-xxx.jar
 commons-yyy.jar
 commons-zzz.jar

な感じに改行できたんだ?って仕様書に書いてるね.知らんかった...orz

  section:               *header +newline 
  nonempty-section:      +header +newline 
  newline:               CR LF | LF | CR (not followed by LF) 
  header:                name : value 
  name:                  alphanum *headerchar 
  value:                 SPACE *otherchar newline *continuation 
  continuation:          SPACE *otherchar newline 
  alphanum:              {A-Z} | {a-z} | {0-9} 
  headerchar:            alphanum | - | _ 
  otherchar:             any UTF-8 character except NUL, CR and LF 

#"value:"に注目!!