Выравнивание camel routes на Java DSL в intellij-idea

254
16 июля 2017, 10:43

Поискал по интернетам и не нашёл никаких плагинов для intellij-idea которые будут выравнивать camel rout'ы в "правильную" иерархию, как например делает с обычным java кодом стандартный ctrl+alt+l.

Может кто-нибудь знает/видел что то подобное?

Сейчас так:

public void configure() {
    // here is a sample which processes the input files
    // (leaving them in place - see the 'noop' flag)
    // then performs content based routing on the message using XPath
    from("file:src/data?noop=true")
            .choice()
            .when(xpath("/person/city = 'London'"))
            .log("UK message")
            .to("file:target/messages/uk")
            .otherwise()
            .log("Other message")
            .to("file:target/messages/others");
}

А хочу вот так:

public void configure() {
    // here is a sample which processes the input files
    // (leaving them in place - see the 'noop' flag)
    // then performs content based routing on the message using XPath
    from("file:src/data?noop=true")
        .choice()
            .when(xpath("/person/city = 'London'"))
                .log("UK message")
                .to("file:target/messages/uk")
            .otherwise()
                .log("Other message")
                .to("file:target/messages/others");
}
READ ALSO
NetBeans IDE 8.2

NetBeans IDE 8.2

Уважаемые программисты , подскажите , пожалуйста , как создать апплет в NetBeans IDE 82?

276
Фигурный элемент в вёрстке

Фигурный элемент в вёрстке

Как называется белый фигурный элемент на скриншоте и как его сверстать?

194
Зависимость между блоками по высоте

Зависимость между блоками по высоте

Есть следующая структура https://xrtcchat/test/index

265