CSS3 filter滤镜效果太强大了,不用不知道。有了它ps可以少做做了。 Filters主要是运用在图片上,以实现一些特效。(尽管他们也能运用于video上),不过我们在些只来讨论图片上的运用。 语法 elm { filter: none | <filter-function > [ <filter-function> ]* } 其默认值是none,他不具备继承性,其中fil ...
阅读全文spring boot存放views的默认路径在哪呢? 写了一个简单Controller的ExceptionHandler,代码如下: 目的是访问/demoexception时估计抛出exception,被controller中定义的exceptionhandler捕获并返回给view error3来显示。 @Controller public class SelfExceptionController { @RequestMapping(&quo ...
阅读全文参考文章: https://www.cnblogs.com/51kata/p/5152400.html http://www.cnblogs.com/fangjian0423/p/servletContainer-tomcat-urlPattern.html Servlet容器Tomcat中web.xml中url-pattern的配置详解[附带源码分析] https://blog.csdn.net/mengxiangxingdong/article/details/806 ...
阅读全文MySQL 字符集引起的Error 1366错误。 错误提示: ERROR 1366 (HY000): Incorrect string value: '\xE5\xB9\xB3\xE5\xAE\x89...' for column 'name' at row 1 解决步骤: 1. 查看通过命令“show variables like "%character%; ” 数据库字符集 mysql> ...
阅读全文如何理解jdeveloper开发时生成的jws,jpr,jpx文件? jws:用来纪录workspace相关的信息,比如workspace中的projects信息。 在workspace disk中。所以又叫application container. jpr:用来纪录project相关的信息,如java files. 所以又叫project container. jpx:用来纪录Model project中data model信息。包含了jdeveloper在设计阶 ...
阅读全文本文为spring cloud学习笔记,官方文档:https://cloud.spring.io/spring-cloud-static/Greenwich.SR1/ 官方文档内容比较多,大体分为下面几大部分: Cloud Native Applications Spring Cloud Context: Application Context Services Spring Cloud Commons: Common Abstractions ...
阅读全文SELECT * FROM ALL_TABLES;系统里有权限的表 SELECT * FROM DBA_TABLES; 系统表 SELECT * FROM USER_TABLES; 当前用户下的表 ...
阅读全文有谁买过这套书? 就是价格有点贵,不知道值不值得?先mark一下,等活动时候看看。 本套丛书中的书目包括: Very First Reading Library Pirate Pat Very First Reading Library Double Trouble Very First Reading Library The Dressing Up Box Very First Reading Library Captain Mac Very First Read ...
阅读全文Installing the Certificates to the Keystore If you receive a message that says "Certificate already exists in system-wide CA keystore under alias <...> Do you still want to add it to your own keystore? [no]:", select Yes. If succes ...
阅读全文...
阅读全文DOM Ready Jquery $(document).ready(function(){ // Code }); YUI Y.on("domready", function(e){ // Code }); 选择器支持 <div class=&qu ...
阅读全文通过apache来访问svn, 这样就可以通过http来访问svn了。jinkens里配置svn url。 使用Apache访问SVN的优缺点: There are some disadvantages of using Apache's http for your Subversion server: It's slower It's harder to setup Then, there are advantages: It uses ...
阅读全文1. 单个字符的处理 ~:切换光标所在位置的字符的大小写形式,大写转换为小写,小写转换为大写 3~:将光标位置开始的3个字母改变其大小写 2. 文本整体的处理 gu:切换为小写, gU:切换为大写 2.1 整篇文章 无须进入命令行模式,键入: ggguG:整篇文章转换为小写,gg:文件头,G:文件尾,gu:切换为小写 gggUG:整篇文章切换为大写,gg:文件头,G:文件尾,gU:切换为大写 2.2 只转化某个单词 guw、gue ...
阅读全文由这个错误来解释java class file内部结构。 java.lang.UnsupportedClassVersionError: HelloWorld : Unsupported major.minor version 51.0 at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClassCond(Unknown Source) 这 ...
阅读全文创建Weblogic Domain有三种方式,本文采用配置向导Configuration Wizard. 以下简称DCW。 示例环境:Weblogic 12.1.2 DCW 8-1:指定目录 DCW 8-2: 选择模板. 默认选择一个最基本的Domain,其不安装一些sample Applications. DCW 8-3:创建管理员帐户,默认用户名为weblogic. ...
阅读全文自签名证书是由个人创建,而不是由一个受信任的证书颁发机构签署的。 一个免费的自签名证书的加密级别也可以达到一个用1500美元买来的证书颁发机构签署的证书水准,但有两个主要缺点: 1)访问者的连接可能被劫持hijacked,从而允许攻击者查看所有发送的数据(因此达不到加密连接的目的:不让其他人看到发送的真实内容) 2)证书不能被撤销,而一个受信任的证书可以。 什么情况下可以使用一个自签名证书以及什么情况下不应该使用? 永远不要将自签名证书应用在电子商务网站或任何传 ...
阅读全文Github上创建一个空库 创建后显示如下信息 ...
阅读全文作者:踏雪无痕 出处:http://www.cnblogs.com/chenpingzhao/ 转自https://www.cnblogs.com/chenpingzhao/p/4896080.html 一、Console API Console.assert() 判断第一个参数是否为真,false的话抛出异常并且在console输出相应信息。 Console.count() 以参数为标识记录调用的次数,调用时在conso ...
阅读全文( function(){ ...... } )( window ); 初次接触jQuery源代码时,它的结构就是如上。这是一个匿名函数被括起来,然后再在后面加一个括号,这个匿名函数就能立即运行起来!这样做有什么好处呢?为什么要这样写?这段代码究竟属不属于闭包呢? 函数声明(function 语句) 正常一个函数的声明和定义如下: function foo(){ ........ } ...
阅读全文官方文档 https://docs.oracle.com/cd/E29542_01/dev.1111/e10224/obe_intro.htm#SOASE004 This chapter describes how to subscribe to or publish business events from Oracle Mediator or a BPEL process in a SOA composite application. Business events are publi ...
阅读全文