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.
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
//noinspection SpringIntegrationMethodEndpointInconsistency
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |
Last modified: 18 September 2025