html代码原样展示
参考地址: HTML标签原样显示
解决方式:
- 用
<script type="text/html" style="display:block;"></script>
包裹代码- 用
<xmp></xmp>
包裹代码
ie不同js文件里的对象,未定义
解决方式:
把其他js文件的对象绑定在 window 对象上。
jQuery cdn 的地址
参考地址:
https://www.bootcdn.cn/jquery/
Unable to find a single main class from
错误:
修改main类所在的包的路径,mvn install 打包的时候,报了这个错误,Caused by: java.lang.IllegalStateException: Unable to find a single main class from
参考:
Caused by: java.lang.IllegalStateException: Unable to find a single main class from问题解决 – 这个地址说的是有多个main方法的问题。
解决方法:
执行mvn clean,之后就好了。
maven 导入本地jar包
问题:
maven 需要引入公司本地jar包
参考地址:
https://blog.youkuaiyun.com/zhengxiangwen/article/details/50734565
解决:
模仿着添加就可以了
<dependency>
<groupId>com.pcitc</groupId>
<artifactId>pdftohtml-util</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/pdftohtml-util-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
angularjs $localtion的用法
https://blog.youkuaiyun.com/Saikonoyume/article/details/53065423