开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 1 Fork 1.1K

金色木叶枫/Spring-Framework

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (23)
标签 (185)
master
5.2.x
5.1.x
5.0.x
4.3.x
issues/gh-24540-dynamic-property-source
issues/gh-24188-handle-annotation-introspection-exceptions
release-5.1.12.RELEASE
issues/gh-19930
issues/gh-22286
optimize-mono-bodies
3.2.x
4.2.x
gh-pages
4.0.x
4.1.x
junit4-to-junit5
olivergierke-patch-1
update-stomp-reactor-netty
3.1.x
v5.2.8.RELEASE
v5.1.17.RELEASE
v5.0.18.RELEASE
v4.3.28.RELEASE
v5.3.0-M1
v5.1.16.RELEASE
v5.2.7.RELEASE
v4.3.27.RELEASE
v5.0.17.RELEASE
v5.2.6.RELEASE
v5.1.15.RELEASE
v5.2.5.RELEASE
v5.2.4.RELEASE
v5.1.14.RELEASE
v4.3.26.RELEASE
v5.0.16.RELEASE
v5.2.3.RELEASE
v5.1.13.RELEASE
v5.2.2.RELEASE
v5.1.12.RELEASE
master
分支 (23)
标签 (185)
master
5.2.x
5.1.x
5.0.x
4.3.x
issues/gh-24540-dynamic-property-source
issues/gh-24188-handle-annotation-introspection-exceptions
release-5.1.12.RELEASE
issues/gh-19930
issues/gh-22286
optimize-mono-bodies
3.2.x
4.2.x
gh-pages
4.0.x
4.1.x
junit4-to-junit5
olivergierke-patch-1
update-stomp-reactor-netty
3.1.x
v5.2.8.RELEASE
v5.1.17.RELEASE
v5.0.18.RELEASE
v4.3.28.RELEASE
v5.3.0-M1
v5.1.16.RELEASE
v5.2.7.RELEASE
v4.3.27.RELEASE
v5.0.17.RELEASE
v5.2.6.RELEASE
v5.1.15.RELEASE
v5.2.5.RELEASE
v5.2.4.RELEASE
v5.1.14.RELEASE
v4.3.26.RELEASE
v5.0.16.RELEASE
v5.2.3.RELEASE
v5.1.13.RELEASE
v5.2.2.RELEASE
v5.1.12.RELEASE
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (23)
标签 (185)
master
5.2.x
5.1.x
5.0.x
4.3.x
issues/gh-24540-dynamic-property-source
issues/gh-24188-handle-annotation-introspection-exceptions
release-5.1.12.RELEASE
issues/gh-19930
issues/gh-22286
optimize-mono-bodies
3.2.x
4.2.x
gh-pages
4.0.x
4.1.x
junit4-to-junit5
olivergierke-patch-1
update-stomp-reactor-netty
3.1.x
v5.2.8.RELEASE
v5.1.17.RELEASE
v5.0.18.RELEASE
v4.3.28.RELEASE
v5.3.0-M1
v5.1.16.RELEASE
v5.2.7.RELEASE
v4.3.27.RELEASE
v5.0.17.RELEASE
v5.2.6.RELEASE
v5.1.15.RELEASE
v5.2.5.RELEASE
v5.2.4.RELEASE
v5.1.14.RELEASE
v4.3.26.RELEASE
v5.0.16.RELEASE
v5.2.3.RELEASE
v5.1.13.RELEASE
v5.2.2.RELEASE
v5.1.12.RELEASE
Spring-Framework
/
spring-expression
贡献代码
同步代码
对比差异 通过 Pull Request 同步
同步更新到分支
通过 Pull Request 同步
将会在向当前分支创建一个 Pull
Request,合入后将完成同步
File empty ...
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
List of outstanding things to think about - turn into tickets once distilled to a core set of issues
High Importance
- In the resolver/executor model we cache executors. They are currently recorded in the AST and so if the user chooses to evaluate an expression
in a different context then the stored executor may be incorrect. It may harmless 'fail' which would cause us to retrieve a new one, but 
can it do anything malicious? In which case we either need to forget them when the context changes or store them elsewhere. Should caching be
something that can be switched on/off by the context? (shouldCacheExecutors() on the interface?)
- Expression serialization needs supporting
- expression basic interface and common package. Should LiteralExpression be settable? should getExpressionString return quoted value?
Low Importance
- For the ternary operator, should isWritable() return true/false depending on evaluating the condition and check isWritable() of whichever branch it
would have taken? At the moment ternary expressions are just considered NOT writable.
- Enhance type locator interface with direct support for register/unregister imports and ability to set class loader?
- Should some of the common errors (like SpelMessages.TYPE_NOT_FOUND) be promoted to top level exceptions?
- Expression comparison - is it necessary?
Syntax
- should the 'is' operator change to 'instanceof' ?
- in this expression we hit the problem of not being able to write chars, since '' always means string:
 evaluate("new java.lang.String('hello').charAt(2).equals('l'.charAt(0))", true, Boolean.class);
 So 'l'.charAt(0) was required - wonder if we can build in a converter for a single length string to char?
 Can't do that as equals take Object and so we don't know to do a cast in order to pass a char into equals
 We certainly cannot do a cast (unless casts are added to the syntax). See MethodInvocationTest.testStringClass()
- MATCHES is now the thing that takes a java regex. What does 'like' do? right now it is the SQL LIKE that supports
 wildcards % and _. It has a poor implementation but I need to know whether to keep it in the language before
 fixing that.
- Need to agree on a standard date format for 'default' processing of dates. Currently it is:
 formatter = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss z", Locale.UK);
 // this is something of this format: "Wed, 4 Jul 2001 12:08:56 GMT"
 // https://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
- See LiteralTests for Date (4,5,6) - should date take an expression rather than be hardcoded in the grammar
 to take 2 strings only?
- when doing arithmetic, eg. 8.4 / 4 and the user asks for an Integer return type - do we silently coerce or
 say we cannot as it won't fit into an int? (see OperatorTests.testMathOperatorDivide04)
- Is $index within projection/selection useful or just cute?
- All reals are represented as Doubles (so 1.25f is held internally as a double, can be converted to float when required though) - is that ok?
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

Spring Framework 是一个开源的Java/Java EE全功能栈(full-stack)的应用程序框架,以Apache许可证形式发布,也有.NET平台上的移植版本
暂无标签
README
Apache-2.0
使用 Apache-2.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/maplecms/Spring-Framework.git
git@gitee.com:maplecms/Spring-Framework.git
maplecms
Spring-Framework
Spring-Framework
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /