Inspectopedia Help

Incorrect Spring Integration endpoint method

Reports incorrect Spring Integration endpoint method declarations.

Example:

class MyEndpoints { @InboundChannelAdapter("channel") public void cannotBeVoid() {...} // A method annotated with @InboundChannelAdapter must have a return type @InboundChannelAdapter("channel") public String cannotHaveParams(String s) {..} // A method annotated with @InboundChannelAdapter can't have arguments @Filter(inputChannel = "channel", // Endpoint can have only one poller outputChannel = "channel2", poller = {@Poller(fixedDelay = "100"), @Poller(fixedRate = "100")}) public void testMultiplePollers() { } @Filter(inputChannel = "channel", outputChannel = "channel2", poller = @Poller(value = "poller", maxMessagesPerPoll = "100")) public void testValue() { } @Filter(inputChannel = "channel", outputChannel = "channel2", poller = @Poller(trigger = "trigger", cron = "0 */10 * * * *")) // 'trigger' attribute is mutually exclusive with other attributes public void testTrigger() { } }

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

SpringIntegrationMethodEndpointInconsistency
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Spring | Spring Integration

Availability

By default bundled with

IntelliJ IDEA 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin

Spring Integration Patterns, 241.18072

Last modified: 18 June 2024