Поискал по интернетам и не нашёл никаких плагинов для 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");
}
Виртуальный выделенный сервер (VDS) становится отличным выбором
Уважаемые программисты , подскажите , пожалуйста , как создать апплет в NetBeans IDE 82?
Как называется белый фигурный элемент на скриншоте и как его сверстать?