asciidoc 生成 pdf 出现问题 2018年11月30日 | Leave a comment 问题: sihai-mbp:resources sihai$ a2x –fop -f… Read More
k8s 本地访问集群内的服务 2018年11月29日 | Leave a comment 问题: 如果 k8s 内的 pod 未通过 service 暴露,本地如何访问 解决: 可以通过… Read More
使用 mitmproxy 调试 java 程序 http rest client 2018年11月23日 | Leave a comment 问题: java restclient 调用别的接口老是出错,也不知道错在哪,也没有方便的方式 dump ht… Read More
【转】SpringBoot配置Cors解决跨域请求问题 2018年11月20日 | Leave a comment https://www.cnblogs.com/yuansc/p/9076604.html 一、… Read More
spring boot 提示 Not a managed type: class 2018年11月20日 | Leave a comment 问题: spring boot 提示 Not a managed type: class 是采用 maven … Read More
【转】vue-cli+webpack在生成的项目中使用bootstrap方法(二) 2018年11月19日 | Leave a comment 转: https://www.cnblogs.com/kongxianghai/p/6910133.html … Read More
spring-core demo basic 2018年11月10日 | Leave a comment package demo.core1; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.stereotype.Component; /** * * @author 老唐 */ public class App { /** * * @author 老唐 */ @Component public static class Bean1 { public String getMsg() { return "你好"; } } public static void main(String[] argv) { AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext("demo.core1"); final Bean1 b1 = ctx.getBean(Bean1.class); System.out.print("b1.getMsg()" + b1.getMsg()); } } 1234567891011121314151617181920212223242526272829 package demo.core1; import org.springframework.context.annotation.AnnotationConfigApplicationContext;import org.springframework.stereotype.Component; /** * * @author 老唐 */public class App { /** * * @author 老唐 */ @Component public static class Bean1 { public String getMsg() { return "你好"; } } public static void main(String[] argv) { AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext("demo.core1"); final Bean1 b1 = ctx.getBean(Bean1.class); System.out.print("b1.getMsg()" + b1.getMsg()); }} … Read More
kotlin 初步印象 2018年11月9日 | Leave a comment 代码有所减少 调用现有java 代码也还算方便 好多特效没体 比较喜欢的特效 null , extension… Read More
thorntail (wildfly swarm) 使用小结 2018年11月8日 | Leave a comment 内存好恐怖占用了700M (开了 cdi/jax-rs/ejb/datasources/mail/undert… Read More