1. 蓝色配色2020-08-17

    https://ww1.sinaimg.cn/mw690/74cf050fjw1ejy37k1ognj20c818gmyi.jpg ...

    阅读全文
  2. 有这样的一段代码来显示一个数字。 <af:inputText value="mybean.studentId" > <af:convertNumber type="number"> </af:inputText> <af:outputText value="mybean.studentId"> <af:convertNumber pattern=&quo ...

    阅读全文
  3. 本文链接:https://blog.csdn.net/strivezxq/article/details/44560771  把spring 相关类做了下整理,把spring主要涉及的类都整理成类图,方便查看它们之前的关系,也能帮助更好的阅读分析源码. 1. IOC容器 BeanFactory类图: 2.  资源Resource相关类图: 3. 资源加载器ResourceLoader相关类图: 4. spring Bean定义解析器相关: ...

    阅读全文
  4. 下面三个命令都可以查看linux操作系统的版本信息 cat /etc/os-release lsb_release -a hostnamectl cat /etc/os-release [test@test01 ~]$ cat /etc/os-release NAME="Oracle Linux Server" VERSION="7.4" ID="ol" VERSION_ID=" ...

    阅读全文
  5. 网页开发安全注意事项: Key Items关键项(安全等级最高): 1)WEB.14 敏感信息不能包含在cookie中。WEB.14 - Cookies must not contain sensitive information. 2)WEB.16 隐藏或不显示的文字不应该包含敏感信息或者权限相关的信息。 WEB.16- Undisplayed text must not contain privileged or sensitive information. 3)AX.2 每个A ...

    阅读全文
  6. JCA学习2015-03-11
    58360

    JCA入门学习资料网摘: 一步一步教你用JCA Connect the enterprise with the JCA Use cases for JCA The J2EE Connector Architecture's Resource Introduction to the J2EE Connector Architecture Choosing among JCA, JMS, and web services for EAI "Con ...

    阅读全文
  7. 图形CSS化2020-08-17

    c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024, xM=M GB=1000*1000*1000 G=1024*1024*1024, 以及T, P, E, Z ,Y The Shapes of CSS All of the below use only a single HTML element. Any kind of CSS goes, as long as it's supported in at ...

    阅读全文
  8. 如何移植svn文件库? how to move an svn repository to a new server? 这个话题网上已经有很多很好的总结,这里记录两个中英文的总结以供参考。 https://stackoverflow.com/questions/3789585/how-to-move-an-svn-repository-to-a-new-server http://blog.chinaunix.net/uid-354915-id-3766906.ht ...

    阅读全文
  9. net stop mysql 注:停止mysql服务 net start mysql 注:启动mysql服务 mysql -u用户名 -p用户密码 注:登陆本机的mysql mysql -u用户名 -p用户密码 -h机器IP 注:登陆指定主机的mysql grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码" grant select,insert,update,delete on *.* to user1@ ...

    阅读全文
  10. Spring Tools2019-06-21

    https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling for your favorite coding environment. Largely rebuilt from scratch, it provides world-class support for developing Spring-based enterprise applications, whether you ...

    阅读全文
  11. 参考创建新的 React 应用 cd ~/Documents/company/officalwebsite/ npx create-react-app soosccweb 终端log: Created git commit. Success! Created soosccweb at /Users/jason/Documents/company/officalwebsite/soosccweb Inside that directory, you can ...

    阅读全文
  12. 初次使用curl抓取某宝购物网站内容时遇到了一些问题。 网站301/302跳转问题 网站js跳转问题 http请求与https请求下抓取内容的不同 这里简单记录下问题和解决方案: 1. curl抓住页面常规方法: $my_curl = curl_init(); //初始化一个curl对象 $url = "www.soosmart.com"; curl_setopt($my_curl, CURLOPT_URL, $url) ...

    阅读全文
  13. 在apache web服务器上,如果没有设置好,就可能将网站目录给暴露出来。用户可能遇到这样的情况: 这往往不是网站站长所期望用户能看到的。 解决这个问题可以通过设置apache配置文件httpd.conf 中的目录 "-Indexs" 指令来解决。 如下图: 这样设置后的效果就会显示:     ...

    阅读全文
  14. /bin :获得最小的系统可操作性所需要的命令 /boot :内核和加载内核所需的文件 /dev :终端磁盘调制解调器等的设备项 /etc :关键的启动文件和配置文件 /home :用户的主目录 /lib :C编译器的库和部分C编译器 /media :可移动介质上文件系统的安装点 /opt :可选的应用安装包 /proc :所有正在运行进程的映像 /root :超级用户的主目录 /sbin :引导修复或者恢复系统的命令 /tmp :每次重新引导就消失的临时文件 /usr ...

    阅读全文
  15. 如何对svn库中的文件更名?how to rename a file in svn? 在workcopy中 svn rename wc(本地原来目录名/文件名) wc(重命名后的目录名/文件名)  svn ci -m “ ” 将重命名提交到版本库  在repository中 svn rename URL(版本库里原目录名/文件名) URL(重命名后库里的目录名/文件名) -m “ ”  ...

    阅读全文
  16. Word order 英语中的正常语序为: 主语 + 谓语动词 + 宾语 + 地点状语 + 时间状语 在疑问句中,语序一般为: (疑问词 +)助动词 + 主语 + 行为动词 + 宾语 + 地点状语 + 时间状语 例如: I like ice-cream. (我喜欢冰淇淋。) What do you like to do after work? (你下班以后想去干什么?) 与 perhaps 和 probably 相关的语序 与 too 和 enoug ...

    阅读全文
  17. semver的文档2021-01-08

    关于semver的文档: https://docs.npmjs.com/cli/v6/using-npm/semver 了解一下 Range Grammar, 以及Tilde Ranges 和Caret Ranges 摘要 Tilde Ranges ~1.2.3 ~1.2 ~1 Allows patch-level changes if a minor version is specified on the comparator. Allows minor-leve ...

    阅读全文
  18. Maven是一个非常强大的软件项目管理工具(注意是软件项目,所以不只是java项目哦,也可以其他语言的软件项目)。可以用它来管理项目的建立,发布,文档等,它可以贯穿项目的整个生命周期。 本文只是为了快速浏览Maven的官方文档,纯粹新手入门。如需深入Maven,需要更多的实战。 官网:http://maven.apache.org/ 官方文档:http://maven.apache.org/guides/index.html 官文主要提供了 1)基本使用入门(下载,安装, ...

    阅读全文
  19. 优雅REST风格的资源URL不希望带 .html 或 .do 等后缀.由于早期的Spring MVC不能很好地处理静态资源,所以在web.xml中配置DispatcherServlet的请求映射,往往使用 *.do 、 *.xhtml等方式。这就决定了请求URL必须是一个带后缀的URL,而无法采用真正的REST风格的URL。 如果将DispatcherServlet请求映射配置为"/",则Spring MVC将捕获Web容器所有的请求,包括静态资源的请求,Sprin ...

    阅读全文
  20. 今天测试mac的scp命令时,使用后报错 bash: scp: command not found。 提示scp的命令找不到,但是查找发现命令是存在的 [root@localhost ~]# whereis scp scp: /usr/bin/scp /usr/share/man/man1/scp.1.gz [root@localhost ~]# find / -name scp /usr/bin/scp 只有一个解释,那就是远程机器上没有安装scp。 ...

    阅读全文