spring boot 提示 Not a managed type: class 问题: spring boot 提示 Not a managed type: class 是采用 maven … Read More
【转】vue-cli+webpack在生成的项目中使用bootstrap方法(二) 转: https://www.cnblogs.com/kongxianghai/p/6910133.html … Read More
spring-core demo basic 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
macos 修复 idea switch root jdk 11 后无法启动的问题 问题: 切换到 jdk11 后 idea 启动一致卡在启动界面 解决: rm ~/Library… Read More
Using Atom For Your First HTML&CSS Coding 转: https://medium.com/@zakharday/using-atom-for-your-fi… Read More