某些框架
文章平均质量分 85
不想说话的猴子
荣耀背后刻着一道孤独。
展开
-
shiro
能做什么?Apache Shiro™ is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session management. With Shiro’s easy-to-understand API, you can quickly and easily secure any application – from the s原创 2020-11-21 10:49:39 · 146 阅读 · 0 评论 -
SpringMVC的注解使用注意问题
的使用,是默认激活功能的,即有了, 我们是不需要显式的来定义。作用:主要是为@Autowired服务的(换句话就是说,使Spring可以处理像@Autowired和@Configuration这样的annotations),如果没有, 我们需要在Spring的XML文件中去注册每一个bean,导致整个XML文件非常大。在context:component-scan可以添加u原创 2016-09-13 18:05:21 · 364 阅读 · 0 评论 -
Struts2总结1
使用struts2页有很长时间了,一直处于只会用,不太了解底层和自己完全独立配置一个项目的能力,最近趁着还比较空闲来总结下首先高屋建瓴,struts2的原理概括1.struts2是基于拦截器实现的,对每一次请求会实行拦截,处理请求的通用代码是交给核心控制器完成,实际的业务代码是交个特定的Action来完成,这也是我们为啥在web.xml里面配置拦截,如: str原创 2016-03-18 10:52:17 · 249 阅读 · 0 评论 -
struts2接受参数的几种形式
主要有四种方式:1.属性驱动:直接在action里面定义成员变量,并提供get set方法,提交方式get或者post,按照属性变量来提交2.模型驱动:在action里面声明一个bean (不需要new),并提供get set方法,定义一个实体bean,在提交变量时候,需要实体bean的对象.属性来提交,如:get方式:XXAction? obj.attr=value;post方式也差不多原创 2016-03-17 14:36:53 · 554 阅读 · 0 评论 -
struts2里action的转发和重定向
形如/basic/index.jsplogin.htm默认type=“dispatcher”即转发,浏览器的url不变,而type="redirect"时候,若形如/basic/index2.jsp则是跳转到index2.jsp下,而我的例子中则是在寻找login.htm的action具体情况具体对待了。原创 2016-03-16 16:04:43 · 684 阅读 · 0 评论 -
使用 Struts 2 开发 RESTful 服务
使用 Struts 2 开发 RESTful 服务从 V2.1 开始,Struts 2 开始提供 Convention 插件,它允许根据“约定”来搜索 Action,以及管理 Action 和 Result 的映射。另外,Struts 2.1 还提供了 REST 插件,使 Struts 2 可以支持 Rails 风格的 URL,以对外提供 REST 风格的资源服务。本文作者通过转载 2016-01-08 14:39:45 · 3819 阅读 · 0 评论 -
Struts2中获取request、session等方法
在Struts2中,从Action中取得request,session的对象进行应用是开发中的必需步骤,那么如何从Action中取得这些对象呢?Struts2为我们提供了四种方式。分别为:Servlet API解藕方式:为了避免与Servlet API耦合在一起,方便Action类做单元测试,Struts2对HttpServletRequest、 HttpSes转载 2015-11-12 14:15:41 · 944 阅读 · 0 评论 -
Jmockit 的使用简单介绍
最近项目需要测试,就用到了jmockit,废话不多说,直接上代码开始。具体可以访问:http://jmockit.org/about.html基于maven构建的项目,在pom.xml中加依赖dependency> groupId>org.jmockitgroupId> artifactId>jmockitartifactId> version>1.20versi原创 2015-11-03 09:42:25 · 1532 阅读 · 0 评论 -
ehcache缓存
ehcahe介绍1.使用在applicationContext.xml里面加 <bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:...原创 2018-03-29 12:02:43 · 438 阅读 · 0 评论