Virtual Environments ensure that dependencies from one Python application don’t overwrite the dependencies of another application. In this lesson, you ...
分类:
编程语言 时间:
2017-12-09 19:19:39
阅读次数:
174
1.第三方使用先加入依赖在build.gradle dependencies { compile 'com.astuetz:pagerslidingtabstrip:1.0.1' } 2.在layout里加入PagerSlidingTabStrip控件,它通常要==在ViewPager控件之上== ...
分类:
其他好文 时间:
2017-12-08 20:50:52
阅读次数:
177
第一步;在package.json里的dependencies加入"jquery" : "^2.2.3" 第二步:npm i 第三步:在webpack.base.conf.js里加入const webpack = require("webpack") 第四步:在module.exports的最后加入 ...
分类:
Web程序 时间:
2017-12-07 21:12:18
阅读次数:
241
创建maven工程,修改jdk pom文件里添加需要的jar包 dependencies> <dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.8</version> <sco ...
==> Installing dependencies for mysql: openssl==> Installing mysql dependency: openssl==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0 ...
分类:
数据库 时间:
2017-12-02 19:45:22
阅读次数:
189
导入eclipse项目时报 Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.> com.android.build.api.transform.TransformException: ...
分类:
Web程序 时间:
2017-12-02 15:03:57
阅读次数:
294
一、导出Jar包可以使用Maven方式 使用mvn package命令即可。 二、使用Idea 1、在Project Structure中新建Artifact 2、选择Jar,From Modules With Dependencies 这一步非常重要,这一步需要设置Main类和Manifest存放 ...
分类:
编程语言 时间:
2017-12-01 23:26:11
阅读次数:
289
以JDBC-MySQL驱动包为例 1、在IntelliJ IDEA中打开要添加jar包的Project 2、File – Project Structure如下图 3、选择Moudules – 再选择Dependencies如下图 4、选中Moudule source – 然后点击2处+号如下图 5 ...
分类:
编程语言 时间:
2017-12-01 18:37:38
阅读次数:
134
IDE使用的是IDEA: 遇到的问题:使用springboot自带main方法无法启动示例,解决方案: 如果大家使用Application中的main方法无法正常启动时,可以去修改Project Structure->Modules->Dependencies下的tomcat-embed-core包 ...
分类:
编程语言 时间:
2017-11-29 19:56:09
阅读次数:
262
这个异常是出现在注入配置文件中配置好的属性时报错的: 此时配置文件默认的名称为:application.properties 解决方法: 将配置文件名改为:application.yml 就可以正常启动. 后来又发现如果想让配置文件名称为application.properties 则需要在配置文件 ...
分类:
编程语言 时间:
2017-11-29 19:51:42
阅读次数:
863