Wesley13 Wesley13
2年前
java实现接口导出csv文件
<palign"center"<imgsrc"http://qiniu.tomxin.cn/blog/180920/5BkJdmB10j.png?imageslim"alt"MaterialRenderPhone"</p<h1align"center"<ahref"http://tomxin.cn"target"\
Easter79 Easter79
2年前
Vue axios调用第三方接口跨域解决
1.在config目录下index.js文件中设置proxyTable:proxyTable:{'/v1':{target:'https://api.douban.com',changeOrigin:true,pathRewrit
BichonCode BichonCode
3年前
双指针问题
一、双指针之左右指针相关题目1.1题目要求:给定一个升序排列的整数数组,找到两个数,使它们的和等于给定的数,有且仅有一个满足条件的解,返回索引。题目分析:需要两个指针,一个指向开头,一个指向末尾,然后向中间遍历,如果指向的两个数相加正好等于target的话,直接返回两个指针的位置即可,若小于target,左指针右移一位,若大于target,右
Stella981 Stella981
2年前
MTK Android修改System分区
Z:\\rk3326\_p\_hq\_rf8637sa\\device\\rockchip\\common\\BoardConfig.mkCalculatepartitionsizefromparameter.txtUSE\_DEFAULT\_PARAMETER:$(shelltestf$(TARGET\_DEVICE\_D
Stella981 Stella981
2年前
Leetcode No.39 组合总和
此文转载自:https://blog.csdn.net/jxq0816/article/details/113079141commentBox一、题目描述给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。candidates 中的数字
Easter79 Easter79
2年前
Spring之@Transactional 注解配置详解
@Target({ElementType.METHOD,ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Inherited@Documentedpublic@interfaceTransactional{@AliasFor("
Stella981 Stella981
2年前
Android中build target,minSdkVersion,targetSdkVersion,maxSdkVersion概念区分
如果开发的应用用户较多,那么必须保证应用在多个版本不同的设备上能够正确的运行。这就要求对各个版本比较熟悉,知道在什么版本中加入了什么新的功能或特性。但是Android的版本太多了,是个令人头疼的问题。如果想了解Android的版本差异,建议读一下Android开发者文档上相关的章节。为了让你的应用程序指定可以运行的版本,Android的manifest文
Stella981 Stella981
2年前
Spring Boot 自动配置(auto
本章,我们为你揭秘SpringBoot自动配置(AutoConfiguration)运行机制,谈到autoconfiguration,肯定离不开@EnableAutoConfiguration注解。packageorg.springframework.boot.autoconfigure;@Target(Element
Stella981 Stella981
2年前
AOP实现Controller参数日志
packagecom.jie.common;importjava.lang.annotation.\;/\\\@authorwuchunjie\@date2018/2/23\/@Retention(RetentionPolicy.RUNTIME)//注解会在class中存在,运行时可通过反射获取@Target(
郑天寿 郑天寿
4个月前
如何实现接收推送撤回通知栏指定通知?
实现方式请参照SealTalk中的ServiceExtension。具体步骤如下:给工程添加一个target:NotificationServiceExtension。主工程开启PushNotifications和BackgroundModes功能。Ser