我尝试使用logging.file.name=springboot.log来设置我的日志文件,但是没有日志文件被写入。但让人非常困惑的是springboot.txt是如何工作的。以下是我在application.properties中的设置
logging.level.com.demo=trace
# For the following files, I just keep one and comment the others
logging.file.name=springboot.yml # Works
logging.file.name=springboot.xml # Wor
我是新卡夫卡,弹力靴,并试图整合卡夫卡和弹性搜索在我的弹力启动应用程序。
当我尝试运行springboot应用程序时,我会看到下面的错误:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'kafkaListenerContainerFactory' defined in class path resource [org/springframework/boot/autoconfigure/kafka/KafkaAnnotationDrivenConfi
当我试图整合zipkin的时候。它抛出了这个错误
Error Msg:Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'webMvcMetricsFilter' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/w
我正在使用Helm图表在kubernetes集群上试用spring启动微服务部署。但是我注意到一个奇怪的问题:启动我的春季引导应用程序,但是它在之后立即关闭。
这是原木
Started JhooqK8sApplication in 3.431 seconds (JVM running for 4.149)
2020-06-25 20:57:24.460 INFO 1 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTas
我正在尝试向Prometheus中的目标添加一个标签,以修改SpringBoot中的文件。
我尝试在Springboot中添加一个Prometheus标签,方法如下(在SpringBoot中修改SpringBoot中的Prometheus),但没有成功。
management:
metrics:
tags:
application: ${spring.application.name}
threadLimitInPrometheus: 40 # This tag didn't work
您能告诉我在SpringBoot中添加Prometheus标签的
我正在尝试用嵌入式SpringBoot测试一个简单的null应用程序,但是我的存储库被设置为null。有人能发现我错过了什么吗?
//财务主任:
@RestController
public class MyController {
@Autowired
private MyRepository myRepo;
public MyController() {
}
@RequestMapping(method= RequestMethod.GET, value="/test")
public Iterable<Test&
我正在尝试整合Spring Boot和Shiro。当我试图在一个控制器中调用SecurityUtils.getSubject()时,出现了一个异常:org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is an invalid application conf
已经使用helm图表成功地部署了一个应用程序,但是我无法理解我应该使用哪个url来访问它,..Here是Helm为这个web应用程序创建的Nodeport服务:
kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
demo-springboot-demoweb NodePort 10.101.86.143 <none> 8080:31384/TCP 11m
xxxxxxx@xxxxxxxx5 cha
我正在创建一个spring boot application,其中任何客户机都可以提交请求,这些请求可以是GET、PUT、POST、DELETE。
但是,在创建此应用程序时,我会收到以下错误:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.idr.springboot.service.PersonService required a bean of type 'com.
我正在编写一个linux服务,以便将我的springboot web应用程序部署为服务。这是服务文件springboot.service
[Unit]
Description=My Webapp Java REST Service
[Service]
User=ubuntu
# The configuration file application.properties should be here:
#change this to your workspace
WorkingDirectory=/home/ubuntu
#path to executable.
#executable
我目前正在创建一个Springboot应用程序,它将使用Kafka主题的消息,处理后将写回另一个主题。我用骆驼来整合。
My Route looks like this :
onException(IllegalArgumentException.class).maximumRedeliveries(4);
from("kafka:CDC-GEXPUAT-CUSTOMER")
.id("CamelRouteCustomer_1")
.**transacted**()