Spring ME

授权协议 未知
开发语言 Java
所属分类 手机/移动开发、 手机开发包
软件类型 开源软件
地区 不详
投 递 者 韩羽
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Spring ME 是移动电话上 J2ME 版本的 Spring 框架移植,同时也支持其他不支持反射功能的 Java 平台。

It is to Java ME what Spring is to Java SE and Java EE, which is indicated by the name. However, the "ME" (Micro Edition) suffix not only refers to the platform it supports. It also refers to the size of the runtime, which is pretty minimal. In fact, it's pretty much non-existent, and therefore ideal for situations in which you cannot afford the sheer size of the traditional Spring runtime.

  • 1.在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。 Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了 @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配

  • 前言 本文是参考尚学堂SpringSecurity精讲,仅作为学习记录使用。 这个系列设计到的技术点如下: SpringSecurity Oauth2 SpringSecurity + Oauth2 SpringSecurity +JWT SpringSecurity + Oauth2 SpringSecurity + Oauth2 + JWT 背景 Spring Security 中 Remem

  • spring框架漏洞整理之Spring Framework漏洞(CVE-2015-5211)Spring Framework 内容协商机制(content-negotiation)反射型文件下载(RFD)。 RFD,即 Reflected File Download 反射型文件下载漏洞,是一个 2014 年来自 BlackHat 的漏洞。这个漏洞在原理上类似 XSS,在危害上类似 DDE:攻击者可

  • rememberMe认证流程 简单来说,认证时首先会经过UsernamePasswordAuthenticationFilter,如果开启了rememberMe,随后会有一个RememberMeAuthenticationFilter进行token认证。该filter调用一个rememberMeServices,该service的autoLogin方法中从request中获取对应的cookie,经

  • 1.controller package net.yym.web.controller.home; import com.google.common.base.Optional; import net.yym.core.entity.Doctor; import net.yym.web.controller.BaseController; import net.yym.web.security.

  • 在使用 Spring Security 的 Remember Me 记住密码功能时遇到的问题和解决方法 java.lang.IllegalStateException: UserDetailsService is required. 配置信息(Security.java) @Autowired public void configureGlobal(AuthenticationM