加载中…
http://blog.sina.com.cn/u/1438995953
首页
博文目录
关于我
个人资料
微博
加好友
发纸条
写留言
加关注
博客等级:
博客积分:
博客访问:
关注人气:
获赠金笔:
0支
赠出金笔:
0支
荣誉徽章:
正文
字体大小:
大
中
小
JAVA基础#
(2022-07-28 15:01:19)
分类:
JAVA开发
ClassLoader:
https://blog.csdn.net/briblue/article/details/54973413
ClassPath:
classpath:mypath*.xml
classpath*: mypath*.xml
*:会查找jar中的 classpath
示例
ResourcePatternResolver resolver = new PathMatchingResourcePatt
ernResolver();
Resource[] resources = resolver.getResources("classpath*:*.properties");
for ( Resource res : resources) {
System.out.println(res);
}
JAVA 反射基础
https://blog.csdn.net/wy_05689/article/details/123101320
https://www.cnblogs.com/guangshan/p/4886029.html
https://www.cnblogs.com/guangshan/p/4888656.html
https://www.cnblogs.com/guangshan/p/4891715.html
https://www.cnblogs.com/guangshan/p/4893490.html
分享:
喜欢
0
赠金笔
阅读
┊
收藏
┊
喜欢
▼
┊
打印
┊
举报/Report
加载中,请稍候......
前一篇:
JIRAConfluence运维
后一篇:
Flink基础