上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: spring-注解 transaction package com.zwj.config; import java.beans.PropertyVetoException; import javax.sql.DataSource; import org.springframework.aop.asp 阅读全文
posted @ 2018-10-28 13:24 周无极 阅读(1214) 评论(0) 推荐(0) 编辑
摘要: spring-注解 aop package com.zwj.aop; import java.util.Arrays; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.After; import org.as 阅读全文
posted @ 2018-10-28 13:20 周无极 阅读(197) 评论(0) 推荐(0) 编辑
摘要: spring-注解 autowired package com.zwj.bean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Compone 阅读全文
posted @ 2018-10-27 15:21 周无极 阅读(200) 评论(0) 推荐(0) 编辑
摘要: spring- 注解 values package com.zwj.bean; import org.springframework.beans.factory.annotation.Value; public class Person { //使用@Value赋值; //1、基本数值 //2、可以 阅读全文
posted @ 2018-10-27 13:55 周无极 阅读(215) 评论(0) 推荐(0) 编辑
摘要: spring--注解 IOC(3) package com.zwj.bean; public class Blue { public Blue(){ System.out.println("blue...constructor"); } public void init(){ System.out. 阅读全文
posted @ 2018-10-27 11:54 周无极 阅读(174) 评论(0) 推荐(0) 编辑
摘要: spring-注解 IOC(2) package com.zwj.bean; import org.springframework.beans.factory.annotation.Value; public class Person { private String name; private I 阅读全文
posted @ 2018-10-27 10:56 周无极 阅读(158) 评论(0) 推荐(0) 编辑
摘要: (2) spring-注解 LifeCylce package com.zwj.bean; import org.springframework.stereotype.Component; @Component public class Car { public Car(){ System.out. 阅读全文
posted @ 2018-10-27 10:27 周无极 阅读(218) 评论(0) 推荐(0) 编辑
摘要: spring-注解 (1) -- include/exclude package com.zwj.bean; import org.springframework.stereotype.Component; @Component public class Car { public Car(){ Sy 阅读全文
posted @ 2018-10-25 11:24 周无极 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Springboot--Mail package com.example.springbootmail.mail; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereo 阅读全文
posted @ 2018-10-14 17:36 周无极 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Springboot--Async package com.example.springbootasync.Controller; /* 任务一开始执行 任务二开始执行 任务三开始执行 耗时135 耗时573 耗时7282 */ import com.example.springbootasync. 阅读全文
posted @ 2018-10-14 17:15 周无极 阅读(481) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页