zoukankan      html  css  js  c++  java
  • spring boot 启动方式

    1、jar当下运行

    java  -jar  demo-0.0.1-SNAPSHOT.jar

    【windows环境】

    C:UsersdellIdeaProjectsspring_eureka	arget>java  -jar  eureka-server-1.0.jar
    2019-05-15 19:45:51.885  INFO 14232 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@3b192d32: startup date [Wed May 15 19:45:51 CST 2019]; root of context hierarchy
    2019-05-15 19:45:52.404  INFO 14232 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
    2019-05-15 19:45:52.496  INFO 14232 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'configurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$1678d74b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    
      .   ____          _            __ _ _
     /\ / ___'_ __ _ _(_)_ __  __ _    
    ( ( )\___ | '_ | '_| | '_ / _` |    
     \/  ___)| |_)| | | | | || (_| |  ) ) ) )
      '  |____| .__|_| |_|_| |_\__, | / / / /
     =========|_|==============|___/=/_/_/_/
     :: Spring Boot ::        (v1.5.4.RELEASE)
    
    2019-05-15 19:45:53.340  INFO 14232 --- [           main] c.e.eureka.SpringEurekaApplication       : No active profile set, falling back to default profiles: default
    2019-05-15 19:45:53.376  INFO 14232 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@50b494a6: startup date [Wed May 15 19:45:53 CST 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@3b192d32
    

    【linux环境】

    [root@smallsun shine]# java -jar eureka-server-1.0.jar 
    2019-05-15 19:28:25.755  INFO 19691 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@4aa8f0b4: startup date [Wed May 15 19:28:25 CST 2019]; root of context hierarchy
    2019-05-15 19:28:26.067  INFO 19691 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
    2019-05-15 19:28:26.129  INFO 19691 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'configurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$287c9a6c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    
      .   ____          _            __ _ _
     /\ / ___'_ __ _ _(_)_ __  __ _    
    ( ( )\___ | '_ | '_| | '_ / _` |    
     \/  ___)| |_)| | | | | || (_| |  ) ) ) )
      '  |____| .__|_| |_|_| |_\__, | / / / /
     =========|_|==============|___/=/_/_/_/
     :: Spring Boot ::        (v1.5.4.RELEASE)
    
    2019-05-15 19:28:26.669  INFO 19691 --- [           main] c.e.eureka.SpringEurekaApplication       : No active profile set, falling back to default profiles: default
    2019-05-15 19:28:26.696  INFO 19691 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2758fe70: startup date [Wed May 15 19:28:26 CST 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@4aa8f0b4
    

    2、jar后台运行

    nohup  java  -jar  eureka-server-1.0.jar > eureka.log &
    

    【linux环境】

    [root@smallsun shine]# nohup java -jar eureka-server-1.0.jar  > eureka-server.log &
    [1] 19801
    [root@smallsun shine]# nohup: ignoring input and redirecting stderr to stdout
    

    【进程】

    [root@smallsun shine]# ps -ef|grep eureka-server
    root     19801 19224 22 19:36 pts/4    00:00:29 java -jar eureka-server-1.0.jar
    root     19879 19224  0 19:38 pts/4    00:00:00 grep --color=auto eureka-server
    缘于生活,而归于工作。本人所书,而意于分享。 如有转载,请注明出处! --活出自己范儿
  • 相关阅读:
    phpmyadmin和网页上面的乱码问题
    整理: Android HAL
    warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]-给char* 形参 传入 宏定义字符串
    ubuntu 输入法莫名其妙变繁体
    linux内核版本号添加字符/为何有时会自动添加“+”号以及怎么去掉
    Unable to handle kernel NULL pointer dereference at virtual address 00000000
    Ubuntu 18.04 安装 Samba 服务器及配置
    linux查看版本信息
    图解:电压掉电监测电路如何实现检测工作?
    精密全波整流+一阶RC滤波器检测市电电压
  • 原文地址:https://www.cnblogs.com/Small-sunshine/p/10852319.html
Copyright © 2011-2022 走看看