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

2017年6月30日

shiro的web.xml的配置

摘要: <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet </servlet-class> <init 阅读全文

posted @ 2017-06-30 09:49 ScvQ 阅读(1924) 评论(0) 推荐(0)

spring-sevlet简单配置

摘要: <<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文

posted @ 2017-06-30 09:45 ScvQ 阅读(188) 评论(0) 推荐(0)

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 阅读(2622) 评论(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 阅读(308) 评论(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 阅读(135) 评论(0) 推荐(0)

2017年6月29日

mac查看端口占用情况

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

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

HTML userAgent

摘要: 阅读全文

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

Java缓存技术有哪些

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

posted @ 2017-06-29 11:27 ScvQ 阅读(852) 评论(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 阅读(1648) 评论(0) 推荐(0)

docker数据卷

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

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

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

导航