This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.acme; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
import java.util.stream.Stream; | |
import static java.util.function.Predicate.not; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{} ~ curl -v --insecure https://192.168.76.254:6443/api | |
* Trying 192.168.76.254:6443... | |
* Connected to 192.168.76.254 (192.168.76.254) port 6443 (#0) | |
* ALPN, offering h2 | |
* ALPN, offering http/1.1 | |
* successfully set certificate verify locations: | |
* CAfile: /etc/ssl/cert.pem | |
* CApath: none | |
* (304) (OUT), TLS handshake, Client hello (1): | |
* (304) (IN), TLS handshake, Server hello (2): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash | |
$ sudo iptables -L -n | |
Chain INPUT (policy ACCEPT) | |
target prot opt source destination | |
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 | |
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:1414 | |
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:9443 | |
Chain FORWARD (policy DROP) | |
target prot opt source destination |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kuber curl -v GET "http://localhost:8080/api\?timeout\=32s" | |
* Trying 193.232.168.26:80... | |
* Connected to GET (193.232.168.26) port 80 (#0) | |
> GET / HTTP/1.1 | |
> Host: GET | |
> User-Agent: curl/7.79.1 | |
> Accept: */* | |
> | |
* Mark bundle as not supporting multiuse | |
< HTTP/1.1 404 Not Found |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error creating bean with name 'sendMessageControllerV1' defined in URL [jar:nested:/app.jar/!BOOT-INF/classes/!/services/crp/core/web/controller/SendMessageControllerV1.class]: Unsatisfied dependency expressed through constructor parameter 1: Error creating bean with name 'messageReceiverService' defined in URL [jar:nested:/app.jar/!BOOT-INF/classes/!/services/crp/core/service/MessageReceiverService.class]: Unsatisfied dependency expressed through constructor parameter 4: Error creating bean with name 'messageSenderService' defined in URL [jar:nested:/app.jar/!BOOT-INF/classes/!/services/crp/core/service/MessageSenderService.class]: Unsatisfied dependency expressed through constructor parameter 16: Error creating bean with name 'pipelineBuilderService': Invocation of init method failed | |
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sendMessageControllerV1' defined in URL [jar:nested:/app.jar/!BOOT-INF/classes/!/services/crp/core/web/controller/SendMessageContr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bft.bftresend.business.zags.processors; | |
import lombok.extern.slf4j.Slf4j; | |
import org.apache.camel.Exchange; | |
import org.apache.camel.Processor; | |
import org.bft.bftresend.business.zags.model.ZagsProxy; | |
import org.bft.bftresend.utils.FileUtils; | |
import org.bft.bftresend.utils.MessageProcessor; | |
import org.springframework.stereotype.Component; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bft.bftresend.business.zags.processors; | |
import lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.apache.camel.Exchange; | |
import org.apache.camel.Processor; | |
import org.bft.bftresend.business.zags.model.ZagsProxy; | |
import org.bft.bftresend.services.ElectronicArchiveResource; | |
import org.bft.bftresend.services.MessageFormater; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bft.bftresend.business.zags.processors; | |
import lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.apache.camel.Exchange; | |
import org.apache.camel.Processor; | |
import org.bft.bftresend.business.zags.model.ZagsProxy; | |
import org.bft.bftresend.business.zags.model.dto.MessageLogInfo; | |
import org.bft.bftresend.utils.MessageProcessor; | |
import org.springframework.stereotype.Component; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bft.bftresend.business.zags.processors; | |
import lombok.RequiredArgsConstructor; | |
import lombok.extern.slf4j.Slf4j; | |
import org.apache.camel.Exchange; | |
import org.apache.camel.Processor; | |
import org.bft.bftresend.business.zags.model.ZagsProxy; | |
import org.bft.bftresend.services.ElectronicArchiveResource; | |
import org.bft.bftresend.services.MessageFormater; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.bft.bftresend.business.zags.route; | |
import lombok.RequiredArgsConstructor; | |
import org.apache.camel.Exchange; | |
import org.apache.camel.LoggingLevel; | |
import org.apache.camel.builder.RouteBuilder; | |
import org.bft.bftresend.business.zags.processors.ZagsGetAllMessagesProcessor; | |
import org.bft.bftresend.business.zags.processors.ZagsLoadFilesForAnalyzerProcessor; | |
import org.bft.bftresend.business.zags.processors.ZagsReadFileByFileUUIDProcessor; | |
import org.bft.bftresend.business.zags.processors.ZagsReadFileByMessageIdProcessor; |
NewerOlder