由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - spring framework不open source 了?
相关主题
JAVA问题求教问java applet的问题
what is the best java decompiler/reverse engineering tool?求助大家 如何用 Eclipse 给一个project加入image
Confluence太贵了Heh, Spring's own application server
请问java有办法隐藏source code吗Any good book or Tutorial to lean Spring
啥时候java spring framework也成了legacy framework了vmware acquired springsource
view templating technologySpring自学咋学呢?
一个关于generics的问题Which/what Java tools are appropriate?
How to protect Jar files from being decompiled?java为啥这么多framework
相关话题的讨论汇总
话题: source话题: framework话题: open话题: spring话题: decompiler
进入Java版参与讨论
1 (共1页)
b******y
发帖数: 9224
1
听说新推出了SpringSource, 不知道是咋回事儿。准备看看。
但,好像网上大家都传言,spring framework改方向了?有可能不open source了?
有人知道详细的,给说说?
t*******e
发帖数: 684
2
做大了,要赚钱了
A**o
发帖数: 1550
3
do you guys all read spring source code? //admire
S*********t
发帖数: 78
4
只是换了个COO而已吧,没有确定说不open source了。

【在 b******y 的大作中提到】
: 听说新推出了SpringSource, 不知道是咋回事儿。准备看看。
: 但,好像网上大家都传言,spring framework改方向了?有可能不open source了?
: 有人知道详细的,给说说?

g*****g
发帖数: 34805
5
Not a lot, but it's handy when you needs it.
Once I had to read quite some code to understand its web framework
and plug in some custom function.

【在 A**o 的大作中提到】
: do you guys all read spring source code? //admire
m******t
发帖数: 2416
6

It's the app server, not the framework. The app server
still has a GPL3 edition I think.
Rod and Co. seem to be also jumping on the
open-source-the-basics-and-charge-for-the-enterprise wagon.

【在 b******y 的大作中提到】
: 听说新推出了SpringSource, 不知道是咋回事儿。准备看看。
: 但,好像网上大家都传言,spring framework改方向了?有可能不open source了?
: 有人知道详细的,给说说?

L*******r
发帖数: 1011
7
maybe the company will be sold to some one else.
hehe, like JBoss to RedHat, MySQl to Sun, Sleepycat to Oracle...

【在 m******t 的大作中提到】
:
: It's the app server, not the framework. The app server
: still has a GPL3 edition I think.
: Rod and Co. seem to be also jumping on the
: open-source-the-basics-and-charge-for-the-enterprise wagon.

b******y
发帖数: 9224
8
One thing I like about open source, is that I can read the source code.
我觉得,如果不了解framework的具体运作,很多时候好像是隔着一层雾气一样。
我看过spring 的源程序。写的还是不错的。希望他们至少像mysql一样,保持
community的版本。。。
c*****t
发帖数: 1879
9
现在的 Java decompiler 做的不错。decompile 出来的 code 跟写的差不多,
就差 comment 了。如果再弄上自动的弄得 comment,那就。。。

【在 b******y 的大作中提到】
: One thing I like about open source, is that I can read the source code.
: 我觉得,如果不了解framework的具体运作,很多时候好像是隔着一层雾气一样。
: 我看过spring 的源程序。写的还是不错的。希望他们至少像mysql一样,保持
: community的版本。。。

h**j
发帖数: 2033
10
现在comment已经可以放进class了吗

【在 c*****t 的大作中提到】
: 现在的 Java decompiler 做的不错。decompile 出来的 code 跟写的差不多,
: 就差 comment 了。如果再弄上自动的弄得 comment,那就。。。

相关主题
view templating technology问java applet的问题
一个关于generics的问题求助大家 如何用 Eclipse 给一个project加入image
How to protect Jar files from being decompiled?Heh, Spring's own application server
进入Java版参与讨论
Z****e
发帖数: 2999
11
就是generics, template不好处理

【在 c*****t 的大作中提到】
: 现在的 Java decompiler 做的不错。decompile 出来的 code 跟写的差不多,
: 就差 comment 了。如果再弄上自动的弄得 comment,那就。。。

h**j
发帖数: 2033
12
这跟comment是一样的 不放进class 那是没办法搞

【在 Z****e 的大作中提到】
: 就是generics, template不好处理
c*****t
发帖数: 1879
13
现在不是有工具自动 generate comment 么?
这两个合并一下能弄个挺唬人的 source code 。

【在 h**j 的大作中提到】
: 现在comment已经可以放进class了吗
F****n
发帖数: 3271
14
有能beat obfuscator 的decompiler吗

【在 c*****t 的大作中提到】
: 现在的 Java decompiler 做的不错。decompile 出来的 code 跟写的差不多,
: 就差 comment 了。如果再弄上自动的弄得 comment,那就。。。

F****n
发帖数: 3271
15
GENERICS对程序逻辑没有任何影响,
就是方便程序员查错的一个工具而已,
对已经写好的程序来说没什么用。
TEMPLATE是可以反编译的。

【在 Z****e 的大作中提到】
: 就是generics, template不好处理
c*****t
发帖数: 1879
16
这个应该不太可能的吧。毕竟没法自动取个好名字。
不过也不是完全没有地方可以看到代码。比如很多靠 reflection 工作的
variable / function 不能 obfuscate ,比如处理 XML 的地方。还有很
多 API 接口也得保留(除非连 library 也一起 obfuscate)。

【在 F****n 的大作中提到】
: 有能beat obfuscator 的decompiler吗
F****n
发帖数: 3271
17
我机器上有3个decompiler, obfuscator很讨厌啊:)
但用过的最好的decompiler是一个command line的,没有GUI,
忘了叫什么名字了。

【在 c*****t 的大作中提到】
: 这个应该不太可能的吧。毕竟没法自动取个好名字。
: 不过也不是完全没有地方可以看到代码。比如很多靠 reflection 工作的
: variable / function 不能 obfuscate ,比如处理 XML 的地方。还有很
: 多 API 接口也得保留(除非连 library 也一起 obfuscate)。

g*****g
发帖数: 34805
18
版权是靠patent,license保护的,要我说obfuscator意思不大。

【在 c*****t 的大作中提到】
: 这个应该不太可能的吧。毕竟没法自动取个好名字。
: 不过也不是完全没有地方可以看到代码。比如很多靠 reflection 工作的
: variable / function 不能 obfuscate ,比如处理 XML 的地方。还有很
: 多 API 接口也得保留(除非连 library 也一起 obfuscate)。

c*****t
发帖数: 1879
19
Patent 比较强,因为不管谁的 implementation,都得付钱。我以前需要
用一 hyperbolic view,虽然有 open source code (欧洲人写的),但
是美国有 software patent,欧洲没有。所以用不了。
License 真的很难说。因为同样的 implementation 的机会还是很大的。
要想在 court 里面证明是还是有难度的。

【在 g*****g 的大作中提到】
: 版权是靠patent,license保护的,要我说obfuscator意思不大。
1 (共1页)
进入Java版参与讨论
相关主题
java为啥这么多framework啥时候java spring framework也成了legacy framework了
【请教】怎么往一个applet里面填字符串?view templating technology
Click web framework is interesting一个关于generics的问题
请问有没有generic的arrayHow to protect Jar files from being decompiled?
JAVA问题求教问java applet的问题
what is the best java decompiler/reverse engineering tool?求助大家 如何用 Eclipse 给一个project加入image
Confluence太贵了Heh, Spring's own application server
请问java有办法隐藏source code吗Any good book or Tutorial to lean Spring
相关话题的讨论汇总
话题: source话题: framework话题: open话题: spring话题: decompiler