Here is the solution. Thanks Dylan McClung.
PdfWriter writer = ...;
PdfContentByte cb = writer.getDirectContent();
cb.saveState();
cb.setColorStroke(Color.black);
cb.rectangle(x,y,x1,y1);
cb.stroke();
cb.restoreState();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…