BANNER_POD_NAME property

String BANNER_POD_NAME
final

The reserved pod name for the startup banner.

The banner is displayed during application startup and can be customized to show application-specific information, version details, or custom ASCII art.

Custom Banner Example:

@Pod
Banner customBanner() {
  return CustomBanner('''
  ┌──────────────────────────────────────┐
  │           MY APPLICATION             │
  │         Version 1.0.0                │
  └──────────────────────────────────────┘
  ''');
}

Implementation

static final String BANNER_POD_NAME = "jetleaf.internal.banner";