上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: package com.yd.demo03; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; // 动态代理生成工具类 publi 阅读全文
posted @ 2020-05-11 21:17 老王同鞋 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1. The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC drive 阅读全文
posted @ 2020-05-11 09:23 老王同鞋 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1. 使用@Configuration标记一个配置类 @Configuration public class JavaConfig { @Bean public User user(){ return new User(); } } @Configuration的本质就是一个@Compontent( 阅读全文
posted @ 2020-05-08 21:51 老王同鞋 阅读(566) 评论(0) 推荐(0) 编辑
摘要: 1. 想要使用spring的注解进行开发,需要先在配置文件中导入依赖。 想要使用component组件及其衍生的组件进行开发,则需要在配置文件中添加component扫描路径。 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://w 阅读全文
posted @ 2020-05-08 21:18 老王同鞋 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1. 导入注解依赖并开启支持注解; <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/ 阅读全文
posted @ 2020-05-08 20:32 老王同鞋 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-07 21:24 老王同鞋 阅读(373) 评论(0) 推荐(0) 编辑
摘要: p命名空间是set注入的一种快捷实现方式,想要使用p命名空间注入,需要注意一下几点。 1. 实体类中必须有set方法; 2. 实体类中必须有无参构造器(默认存在); 3. 必须导入p命名空间注入方式依赖。 xml依赖代码: xmlns:p="http://www.springframework.or 阅读全文
posted @ 2020-05-07 21:15 老王同鞋 阅读(1475) 评论(0) 推荐(2) 编辑
摘要: 配置文件中的bean代码 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2020-05-07 20:44 老王同鞋 阅读(211) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-05-07 20:42 老王同鞋 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 一言Api接口地址:https://api.uixsj.cn/hitokoto/get 配置文件我就不写了 <template> <view class="uni-padding-wrap uni-common-mt" > <view> {{data.content}} </view> </view 阅读全文
posted @ 2020-05-07 15:12 老王同鞋 阅读(2831) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页