找到约 10000 条结果
  • Android之Service
    startService(): run indefinetly, 需要在适当时候stopSelf() onBind(): 提供一个CS模式的服务,runs as long as the component bound to it. 当所有组件都unBind() 时,Service也就destroy了。
    2015-03-02
  • 聊聊nacos-sdk-go的HostReactor
    HostReactor定义了serviceInfoMap、cacheDir、updateThreadNum、serviceProxy、pushReceiver、subCallback、updateTimeMap、updateCacheWhenEmpty属性
    2020-06-25
  • ansible-playbook nodejs
    {代码...}
    2021-02-23
  • 如何在SAP ABAP系统里创建和消费Web Service
    This document could be used as guide for beginners to learn and use ABAP web service.
    2020-09-04
  • Nacos - 服务端处理注册请求
    Nacos - 客户端注册已经讲过了,那这里讲一下服务端是怎么处理请求的。处理客户的请求在InstanceController里,我们看看register方法。InstanceController#register这里主要是封装Instance,并调用serviceManager的registerInstance方法进行服务注册。 {代码...} ServiceManager#registerInstance判断是否已经注册过,如...
    2021-01-05
  • SAP Cloud Application Programming CatalogService 默认的路径
    最后 cds watch 的结果:该 Service 的名称:AdminService,去掉了后缀 Service,再把前面的 Admin 转成 lowercase 的结果:admin
    2021-04-11
  • eBFP工具beyla探析
    beyla是Grafana开发一款基于ebpf的应用检测工具,它可以在不侵入应用程序代码的基础上,通过监听内核态的系统调用和用户态的库函数调用,将其解析为http/grpc的指标,从而为应用程序提供可观测性。
    2023-10-15
  • 如何在SAP CRM WebClient UI里创建web service并使用ABAP消费
    In this blog I will create a web service which is exposed via Genil model PROD in CRM web client UI and consume it via a simple ABAP program.
    2020-09-05
  • 让karaf随ubuntu开机启动
    最近帮助一个客户部署了一个Apache Servicemix环境。客户提出,能不能让Servicemix开机启动。这样,如果机器出现了什么问题,重启一下就好了。不需要让运维人员知道如何操作Servicemix。当然可以。需求合理,没有拒绝的理由。
    2018-01-21
  • CentOS 将 Redis 配置为系统服务
    创建 redis.service {代码...} 编辑内容 {代码...} 重新载入 systemctl 并启动服务 {代码...} 查看状态 {代码...} 关闭 Redis {代码...} 开机自启 {代码...} 是否开机自启 {代码...} 本文首发于本人博客
    2018-08-14
  • SAP CDS view自学教程之四:SAP CDS view注解@OData.publish的奥妙
    In part1 of this tutorial, the old way to create OData service on top of CDS view is introduced.In SAP Help Generate Service Artifacts From a CDS View a new annotation is described:
    2020-09-09
  • vue项目多环境配置(.env)的实现
    {代码...} --mode bsy 对应.env.bsy 文件,其他模式类似,如--mode kthz 对应.env.kthz 文件
    2021-08-25
  • SAP CRM WebClient UI交互式报表的Gross Value工作原理
    SAP CRM WebClient UI交互式报表(Interactive Report)的Gross Value工作原理 the selection fields passed to backend for this report: what is difference between Gross value header and Gross value of Service Orders? Subject: RE: Some questions regarding CRM Interactive Report OLTP based on so called rep...
    2020-03-07
  • centos7.6 使用systemd 注册tomcat成为服务 并一键启动
    背景:使用systemd注册tomcat服务成为systemd管理,并一键启动关停在系统的/usr/lib/systemd/system路径下依次创建需要注册的服务例如创建bim.service 内容如下 {代码...} 创建统一管理集群服务的targetiam.target {代码...} 将iam.target设置为开机自启 systemctl enable iam.target重启机器ps -ef| grep java 会发现服务...
    2022-01-27
  • SpringCloudGateway无法访问Eureka已注册的服务
    本地SpringCloudGateway网关application.yml文件如下:server: port: 16620 spring: application: {代码...} cloud: {代码...} eureka: instance: {代码...} client: {代码...} 本地搭建的SpringCloudGateway网关服务,无法访问在Eureka上已注册的服务,最终分析原因如下:请求URI为:/service/photo/save,网关接收到的...
    2019-07-25
  • SPI
    {代码...} {代码...} 重点就是ServiceLoader.load {代码...}
    2020-08-10
  • Android Service 之 Bound Services
    A bound Service 提供了一种CS模式的Service。 A bound service allows components (such as activities) to bind to the service, send requests, receive responses, and even perform interprocess communication
    2015-03-02