Wesley13 Wesley13
3年前
android隐藏以及显示软键盘以及不自动弹出键盘的方法
1、//隐藏软键盘((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(WidgetSearchActivity.this.getCurrentFocus().getWindowToken(),InputMe
Wesley13 Wesley13
3年前
@Repository、@Service、@Controller 和 @Component
@Repository、@Service、@Controller(https://my.oschina.net/u/1774615)和@Component将类标识为Beanspring自2.0版本开始,陆续引入了一些注解用于简化Spring的开发。@Repository注解便属于最先引入的一批,它用于将数据访问层(DAO层)的类
Stella981 Stella981
3年前
Service Discovery with Spring Cloud Eureka
<dependency<groupIdorg.springframework.cloud</groupId<artifactIdspringcloudstartereurekaserver</artifactId</dependency@SpringBootApplication@EnableEurekaServe
Stella981 Stella981
3年前
Service Mesh 网红 ,istio
变化变化项类型1.6(.3)1.5或之前意义移除组件Citadel、SidecarInjector、Galley1.5为完成的收尾强化功能项删减的功能,合并入Istiod替换安装增加:istioctlinstall;替换manifestapply移除配置废弃的Hel
Stella981 Stella981
3年前
Android应对进程被杀死
序言最近项目要实现这样一个效果:运行后,要有一个service始终保持在后台运行,不管用户作出什么操作,都要保证service不被kill,这可真是一个难题。参考了现今各种定制版的系统和安全厂商牛虻软件,如何能保证自己的Service不被杀死呢?其实除了常规的手段,我们可以参考一下微信和360,设置程序正在运行,可以看到微信是同时开启了两个
Stella981 Stella981
3年前
Go jsonRPC 封装
packagerpcsupportimport("log""net""net/rpc""net/rpc/jsonrpc")funcServeRpc(hoststring,serviceinterface{})error{err:rpc.Register(service)ifer
Stella981 Stella981
3年前
Service Account和RBAC授权
一、介绍ServiceAccount概念的引入是基于这样的使用场景:运行在pod里的进程需要调用KubernetesAPI以及非KubernetesAPI的其它服务。ServiceAccount它并不是给kubernetes集群的用户使用的,而是给pod里面的进程使用的,它为pod提供必要的身份认证。二、创建ServiceAcco
Stella981 Stella981
3年前
Apache加入到linux系统service
将Apache加入到linux系统service将apache加入到linux系统服务,用service命令来控制apache的启动和停止。本文由乌合之众瞎写http://my.oschina.com/oloroso(http://my.oschina.com/oloroso)1.生成Apache服务控制脚本1.1提取/usr/l
Stella981 Stella981
3年前
Dubbo错误No provider available for the service
  最近要开发dubbo服务,因为以前没用过,其实dubbo服务很简单,网上有很多例子,还有官方文档http://dubbo.io/Homezh.htm,由于新手上路难免遇到各种各样的问题,我就遇到一个问题让我很是费解,百度也没有多少可用的博客,浪费了1天时间,最后找我们技术总监才搞定,这个错误如下:com.alibaba.dubbo.rpc.Rp
Easter79 Easter79
3年前
Spring中@Controller、@Repository、@Service、@Component注解的作用详解
Spring中使用在类上的常用注解有@Controller、@Repository、@Service、@Component,下面分别详细介绍一下他们的作用:1、@Controller:用于标注控制层服务。2、@Repository:用于标注数据访问层,也可以说用于标注数据访问组件,即DAO组件。3、@Service:用于标注业务逻辑层服务,主要