Fork me on GitHub
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页

2017年6月30日

shiro所需的依赖

摘要: <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>or 阅读全文

posted @ 2017-06-30 09:38 ScvQ 阅读(2582) 评论(0) 推荐(0) 编辑

shiro的Quickstart

摘要: /** * Simple Quickstart application showing how to use Shiro's API. * * @since 0.9 RC2 */ public class Quickstart { private static final transient Log 阅读全文

posted @ 2017-06-30 09:35 ScvQ 阅读(304) 评论(0) 推荐(0) 编辑

shiro.ini

摘要: # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this w 阅读全文

posted @ 2017-06-30 09:35 ScvQ 阅读(133) 评论(0) 推荐(0) 编辑

2017年6月29日

mac查看端口占用情况

摘要: 命令 lsof -i tcp:port (port替换成端口号,比如6379)可以查看该端口被什么程序占用,并显示PID,方便KILL 阅读全文

posted @ 2017-06-29 13:32 ScvQ 阅读(117) 评论(0) 推荐(0) 编辑

HTML userAgent

摘要: 阅读全文

posted @ 2017-06-29 11:48 ScvQ 阅读(373) 评论(0) 推荐(0) 编辑

Java缓存技术有哪些

摘要: 我们用ehcache在本地,分布式用redis和memcache,各有各的好处,现在企业都是应用很多种中间件供俺们码农选择。 阅读全文

posted @ 2017-06-29 11:27 ScvQ 阅读(848) 评论(0) 推荐(0) 编辑

2017年6月28日

<mvc:default-servlet-handler/>的作用

摘要: 优雅REST风格的资源URL不希望带 .html 或 .do 等后缀.由于早期的Spring MVC不能很好地处理静态资源,所以在web.xml中配置DispatcherServlet的请求映射,往往使用 *.do 、 *.xhtml等方式。这就决定了请求URL必须是一个带后缀的URL,而无法采用真 阅读全文

posted @ 2017-06-28 16:15 ScvQ 阅读(1641) 评论(0) 推荐(0) 编辑

docker数据卷

摘要: docker可以通过数据卷来保存在容器中的文件,那么怎么实现数据卷的共享呢?可以通过数据卷容器来进行共享,一个容器挂在数据卷,其他容器来挂载这个容器。 就算删除了数据卷容器(数据卷不会被删除),挂载这个数据卷容器的容器也能访问到数据卷的内容。 命名的容器挂载数据卷,其他容器通过挂载这个容器实现数据共 阅读全文

posted @ 2017-06-28 11:17 ScvQ 阅读(146) 评论(0) 推荐(0) 编辑

2017年6月27日

servlet3.0无web.xml

摘要: 大家应该都已经知道spring 3.1对无web.xml式基于代码配置的servlet3.0应用。通过spring的api或是网络上高手们的博文,也一定很快就学会并且加到自己的应用中去了。PS:如果还没,也可以小小参考一下鄙人的上一篇文章<<探 Spring 3.1之无web.xml式 基于代码配置 阅读全文

posted @ 2017-06-27 18:03 ScvQ 阅读(3118) 评论(0) 推荐(0) 编辑

解决Cannot change version of project facet Dynamic Web Module to 3.1

摘要: Open web.xml from project structure http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> Servlet 3.0 Web Application and update web.xml f 阅读全文

posted @ 2017-06-27 15:59 ScvQ 阅读(220) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页

导航