由买买提看人间百态

topics

全部话题 - 话题: datasource
1 2 3 下页 末页 (共3页)
q*c
发帖数: 9453
1
google 了半天, 看来没人关心这个问题啊
我产生了一个 genericObjectPool, 和 ConnectionFactory, 由此
产生一个 PoolableConnectionFactory, 在由此产生一个 PoolingDataSource.
一切都工作的不错。 now is the problem: 当database shutdown 的时候,
这个 dataSource 就疯狂的自动试图连接, 这是 by design,
但是一旦数据库启动了, 在开始的时候由于来不及反应, 导致大量的
链接请求。
有什么办法 config 这个 dataSource, 叫他 reconnect 的时候
等的时间长一点吗?
谢谢。
b***i
发帖数: 3043
2
最近折腾了一段时间,搞清楚了Spring JDBC。现在继续折腾JPA。求高手指点。
OpenShift上的Spring-quickstart架在jboss eap上,使用了h2,这是个内存中的数据库
,我想改为Mysql。Readme说,只要把persistene.xml里面的
java:jboss/datasources/ExampleDS
改成
java:jboss/datasources/MysqlDS
就行了。但是我试了不行,页面为the page was not found。我觉得,至少得把Mysql的
用户名密码什么的写了吧?我使用的是Eclipse,没有安装jboss,所以找不到
standalone.xml,也没有module.xml。相关的有一个文件spring-quickstart-ds.xml,
里面有
http://www.jboss.org/ironjacamar/schema"
... 阅读全帖
s********e
发帖数: 893
3
一个.net Web applicaition的aspx页面里要显示一个.rdlc的report。刚开始运行时,
report很快就load到了页面上。多运行几次后,report就要花2-3分钟才能显示,然后
几次下来,可能要10分钟才能出来。一查server,cpu到了100%。搜了一下,不少人也
碰到过这个问题,尝试了一些办法,但是问题都没能解决。
report的datasource是在页面load的时候动态生成,见下。Dataset1从sqldatasource1
获得数据,Dataset1再和reportviewer1捆绑。reportview1显示的report是report1.
rdlc。
.aspx
InteractiveDeviceInfos="(Collection)" Width="850px" Height="200px" >


... 阅读全帖
m**c
发帖数: 90
4

Tomcat is a little bit tricky to setup DNS. Your server.xml settings are
correct. You don't need any settings in web.xml. The tricky part is how you
get hold of DataSource object via JNDI (Tomcat does thing differently than
other app servers such as WebLogic, WebSphere, etc.). Here is a sample code
to retrieve DataSource object vai JDNI:
InitialContext context = new InitialContext();
Context envContext = (Context)context.lookup("java:comp/env");
DataSource dataSource = (DataSour
c*****s
发帖数: 214
5
需要DataSource的你的程序而不是JSP和Servlet。一段main程序里能够得到,放到任何Se
rvlet JSP里就也能得到。
javax.sql.DataSource只不过是个接口,实现了就可以用。不是只有那些J2EE
application server提供它的实现,commons-dbcp, c3p0都有。
jetty只是个servlet container,它没有义务通过某种方式自己提供DataSource。
我觉得你可以把数据库定义写在一个文件里,程序中自己创建dbcp DataSource。整个程
序不会超过10行。
z****e
发帖数: 54598
6
来自主题: Java版 - OpenShift怎么上数据库?
这就是为什么我讨厌db
一个简单的东西给搞得无比复杂
加一个transaction,什么事都变得麻烦了
nosql没有transaction,配置起来简单很多
楼主看一下jdbc连接的代码,不过稍微不同的是
openshift直接用上了jndi 和 datasource
以下是参考代码,依葫芦画瓢,剩下的我看你能行
jndiname从.openshift/standalone.xml这个文件里面找
用eclipse直接快捷键:shift+command+r,输入standalone.xml,就可以找到
windows下快捷键应该类似,自己摸索一下
String jndiName = "java:jboss/datasources/PostgreSQLDS";
public String createT(T t){
try{
Connection con = null;
Context ic = new InitialContext();
Object obj = ic.lookup(... 阅读全帖
z****e
发帖数: 54598
7
来自主题: Java版 - OpenShift怎么上数据库?
这就是为什么我讨厌db
一个简单的东西给搞得无比复杂
加一个transaction,什么事都变得麻烦了
nosql没有transaction,配置起来简单很多
楼主看一下jdbc连接的代码,不过稍微不同的是
openshift直接用上了jndi 和 datasource
以下是参考代码,依葫芦画瓢,剩下的我看你能行
jndiname从.openshift/standalone.xml这个文件里面找
用eclipse直接快捷键:shift+command+r,输入standalone.xml,就可以找到
windows下快捷键应该类似,自己摸索一下
String jndiName = "java:jboss/datasources/PostgreSQLDS";
public String createT(T t){
try{
Connection con = null;
Context ic = new InitialContext();
Object obj = ic.lookup(... 阅读全帖
b***i
发帖数: 3043
8
来自主题: Java版 - OpenShift怎么上数据库?
老赵你再帮我看看,我是要把Jbosseap上的spring-eap6-quickstart改成可以使用
mysql.原来使用的是h2,内存中模拟的数据库。原来文件如下
[persistent.xml]
java:jboss/datasources/ExampleDS
[jboss-deployment-structure.xml]





阅读全帖
p*p
发帖数: 75
9
来自主题: DotNet版 - datagrid help
"on PostBack, the DataGrid1.DataSource is null"
Yes, it's right. This is the basic concept must bear in mind. in ASP.NET, the
Control does not hold the Data. Although DataGrid, Repeater are called
Data-Bound controls, the Control can access to the data only when the
DataBind() is called:
if (!IsPostBack)
{
datagrid.DataSource = data;
datagrid.DataBind(); // datagrid use DataSource
to populate the controls
}
when posted back, the datagrid has no i
d****i
发帖数: 4809
10
来自主题: Java版 - Spring例子求解释
openshift没用过,你如果用spring jdbc的话,应该把dataSource设置成postgresql,
比如





d****i
发帖数: 4809
11
我也没搞过那些ORM,hibernate/JPA等等都是ORM,就是把数据库里面的relational
data变成你的Java里面的对象。我直接用Spring JDBC而没用ORM,已经可以满足我的需
求,觉得还不错。那个beans.xml一般是你自己创建的,用来定义Spring bean。比如你
这个要接mysql的话(假设在同一host上),大抵是这样的:




阅读全帖
e****e
发帖数: 2010
12
方法比较傻瓜,需要把Code编辑好,安装浏览器Extension。 职业高中,技校的,文科
女生可以试试,大牛和名校毕业的就算了。觉得有用就给些包子,饿S了。
1) Download and Install iMacros IE extension
http://download.cnet.com/iMacros-for-Internet-Explorer/3000-125
10586882.html
2) Create your code CVS txt file, PlumTarget.txt, Looks like:
Email,CardN,AccessN,RedeemN
xxx@xxx,xxxx,xxxx,xxxxxx
xxx@xxx,xxxx,xxxx,xxxxxx
…...................
Note: 四列文件,只有逗号,没有任何空格。可以用Excel, 存为cvs text file.
3) Edit and Play iMacros File
Edit #Current.iim file as following, save as any file n... 阅读全帖
s**u
发帖数: 17
13
来自主题: Database版 - Help on JDBC:ODBC SOS

I set up the data source with "ODBC datasource administrator". I added a MS
Access driver, setting as following:
DRIVER={Microsoft Access Driver (*.mdb)}
Server=MyServer
database=mydb
then I selected the file mymd.mdb to link to the datasource
source file named mydb.dsn was constructed by computer.
there must be something wrong, but i just don't know it
D****N
发帖数: 430
14
来自主题: Database版 - Help---access Server.
Control Panel/ODBC Data Source
Setup a new SQL data souce (from the "system" tab)
You'll have to know the server ip/name and ur username/password.
Then it'll be accessible to all programs with ODBC connectivity.
Say you want to look at the table in Access:
You can open a file, under "Tables"
Create new linked table... Again select SQL datasource
Then select your odbc data source and one of the table associated with it.
So if your datasource is "TestDB" and the table is "dTest"
You'll be selectin
s***d
发帖数: 14
15
来自主题: DotNet版 - datagrid help
I think I got it.
I need recover/update the data inside the datagrid in Page_Load upon postback,
and then do the datagrid1.datasource = mysource, and then do the
datagrid1.DataBind().
To retrieve data inside the datagrid, just loop thru each item and use
'FindControl' function.
My mistake was that I updated the mysource in the event handler (but_click)
instead of Page_Load, but I had to in Page_Load give the datagrid a datasource
so I gave it the original, pre-updated one, thus all changes were
r****y
发帖数: 26819
16
我没说好。DataSet有俩Collection,一个是DataTable。结果说成DataTable is a
collection of DS了。应该说Tables is a property of DS. Tables is a
collection of DT.
DataGrid.DataSource = DS; DataGrid.DataMember="TableName";这样可以不用create
DT。
所以,可以只用DS;也可以只用DS和DV:
DV=new DV(DS.Tables["TbN"]); DG.DataSource=DV;
若不用DS,就要用SqlDataReader。除此之外的尽管补充。
r****y
发帖数: 26819
17
说得对,我一个一个来。
我说的是不用DS就要用SqlDataReader。
不是“what could possibly be datasource of datagrid”.
至于什么可以做DG的DataSource:
For Windows Form DataGrid, following objs:
DataTable
DataView
DataSet
DataViewManager
Any component that implements the IListSource interface
Any component that implements the IList interface
For WebControl DataGrid, you can bind the Web Forms DataGrid to any object
that supports the IEnumerable interface.
C********r
发帖数: 145
18
Sorry, I have no Chinese software on this machine...
I am new to WPF and Infragistics Controls. I am trying to accomplish a
seemly simple task. use Xamdatagrid to display a collection of data records
retrieved from database.Besides the columns from the data records, I want an
additional unbounded column to contain a checkbox. I am having a really
hard time to get the databinding to work. I have spend 2 days to look up
examples and tutorials but none are complete or easy to understand(for me at
l... 阅读全帖
l******u
发帖数: 10
19
I didn't see you define the JNDI name for the datasource anywhere is the xml
descriptor. JNDI is a globally accessible infrastructure. The entry you
defined in the web.xml is a resource reference, which should be mapped into
JNDI entry in server specific deployment descriptor (i.e, weblogic.xml).
Anyhow, make sure your have a datasource defined in Tomcat with the correct
JNDI name. You should be able to see the entry on Tomcat Admin Console.
l******u
发帖数: 10
20
If you defined the JNDI name for the datasource on Tomcat platform, you don't
even need to declare a corresponding resource-ref in your web.xml file. Your
jndi lookup code should be able to locate the datasource directly.
h*********o
发帖数: 62
21
Commits on the Spring level do not mean that you commit at the datasource
level. Spring transaction mangement really maps the specific datasource
transaction management you use, which in turn might map to another abstract
transaction layer. as long as you do not commit to the permanent storage,
you can roll back your transaction.
But if you commit ur transaction to the db layer, as magicfat said, what's
done is done. there is no turning back.
Hibernate has something called "application transacti
c*m
发帖数: 836
22
来自主题: Java版 - 多线程真头疼,但也挺有趣
我以为他是in general的说多线程。绝大多数DataSource是thread safe的,所以对DS
的操作完全不需要synchronized。不过,即使是最极端的情况,每次只允许一个thread
access DataSource,也还是会快。因为他的程序是个IO和CPU交互或者同时进行的过
程,在这种情况下,单线程只能做一会CPU,做一会IO。如果用多线程,即使IO和计算
本身全是单线程,至少IO和CPU可以同时进行了。更不要说IO和CPU本身也都可以用多线
程优化了。
B*****g
发帖数: 34098
23
来自主题: Java版 - 我也来问问题了
class="org.springframework.orm.jpa.JpaTransactionManager"
p:entityManagerFactory-ref="entityManagerFactory" />
class="org.springframework.orm.jpa.
LocalContainerEntityManagerFactoryBean">



阅读全帖
d****i
发帖数: 4809
24
来自主题: Java版 - Spring例子求解释
在beans.xml里面,然后你要在你的DAO类里面加上对这个class id的ref,比如


b***i
发帖数: 3043
25
来自主题: Java版 - Spring的新手问题

http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ">

class="org.springframework.jdbc... 阅读全帖
z*******3
发帖数: 13709
26
来自主题: Programming版 - 赵老师讲讲flink

先区分是不是reactive
reactive最快最有效率,来一个就处理一个
vert.x的是rxjava,天生就是reactive
akka和storm需要通过插件来改成reactive
flink的streaming目前是window&trigger,并不是reactive的
也不是最快的,但是比spark的microbatch要强一点点
跟不改reactive的storm类似
spark的是microbatch
如果要做成reactive的话
第一步改成getSeed.subscribe(datasource)
然后datasource.publish之后,就自动启动这一套逻辑
akka就可以publish,vert.x就可以subscribe akka
l*******a
发帖数: 107
27
来自主题: Statistics版 - SAS中em5batch的问题
em5batch 要找datasource来execute, 我的这个 data source 来自于 code 中每一步
的data sets.
我的每一步data set code都没有问题,而且能找到每一个data set 相对应的table,
但是最后em5batch execute 的时候就有问题, 找不到最后的table, 请教各位这个
em5batch中的 datasource 应该怎么写?
请各位熟悉的不吝赐教,
多谢!!!
g**8
发帖数: 4951
28
说到一个硅工的工科逻辑推理,再举一个例子。
这是一个很偶然发现的事情,但是如果仔细分析,会得出很有意思的判断。
大家知道GOOGLE搞这搞那,搞了很多东西,包括android什么的,也包括我这里说的这
个open cell-id project,这是一个全球各地主要移动运营商的基站位置数据库,这个
数据库是公开开放的,所以叫open-cell-id。。其他手机应用程序可以根据用户当前的
cell-id再查询搜索这个数据库得到大致位置。。。对很多做手机通讯方面的朋友来说
,或者说这些年大家玩各种手机多的朋友们估计都知道这基本的cell-id定位的道理。
。。很小儿科的一个事情。。。OK。。。但是就是这样一个事情,大家看看棒子是怎
么做的,呵呵。。。
先给出GOOGLE的完整数据库地址:
https://www.google.com/fusiontables/DataSource?dsrcid=14168/14168
在这个数据库里,可以根据国家(MCC)搜索,如果搜的话,美国,日本,欧洲就不
说了,中国,印度都是成百上千页数十万计的结果,而韩国的结果,只有四个!哈哈,
而且其中第一个结果... 阅读全帖
g**8
发帖数: 4951
29
把我刚才的一个跟贴单发一帖。
(一)
在网上看到如下视频:乘客家属一位女士向记者展示手机上显示的她在机上的老公的QQ
帐号在线信息。这个视频的发布时间是3月10日,但是录像时间根据内容看应该是当天3
月8日的事情。
http://v.ifeng.com/news/mainland/2014003/010d587d-a0db-4356-99e
强烈提醒大家注意38秒左右这个女士提到的内容:她老公的QQ帐号在当天早上8点12分
后短暂上线!我听到这个8点12分的时间点时,真是惊出一身冷汗,为什么呢,因为那
个马来总理宣布的飞机最后卫星探测到的联络时间是: 8点11分!!
马来西亚:飞机最后联络是失联当天8点11分
http://news.sina.com.cn/w/2014-03-15/145729715281.shtml
由此几乎可以断定,飞机最后的落地地点,不但不是在印度洋上或者海底,甚至还是有
手机信号覆盖的区域,更进一步的,还是中国移动/联通这些中国主要运营商的海外漫
游协议覆盖区域。
实际上,这条新闻,包括之前几条关于家属能够拨通乘客手机听到呼叫音的新闻我几天
前就看到了,这一直... 阅读全帖
g**8
发帖数: 4951
30
再说手机定位的问题。
传统上手机定位有几种方法,一种是基于单纯手机信号的三角定位,主要用于美国911
电话呼叫时的定位需求。再一种自然就是GPS定位。但是除此之外还有一个cellid基站
id的定位方法。只要手机服务接通,这个cellid的信息就是完全available的。虽然无
法做到精准定位,但是大致位置在这样的情况下,是足够了。飞机上不止一个乘客,不
止一部手机,为什么没有搜救当局来组织对这些手机的最后联络点进行一次完整的排查?
而且这个手机cellid位置信息完全是公开的:
比如:
https://www.google.com/fusiontables/DataSource?dsrcid=14168/14168
假设:按照mcc=502(马来西亚)查,结果有这些:
当然,这里假设不厚道的认为飞机最终地点搞不好就在马来西亚,这里自然是个例子,就
是举例说明如果调查当局有了cellid信息,见表,单纯查google都至少大致能够知道其
在哪里。。。
m******8
发帖数: 1676
31
来自主题: Military版 - 问大家一个EXCEL 问题, 先谢
有一个TAB, 上面有个CHART, 我可以改这个CHART 的DATASOURCE。 但是这个CHART以
外的EXCEL CELL, 就是整个这个TAB 的BACKGROUND, 不能让我选择或做任何改动,
好像GREYOUT 的样子。 我看了, 好像也不是用PASSWORD PROTECT 的。 那怎
么就开这 PROTECT?
谢谢
n*******r
发帖数: 2010
32
来自主题: Military版 - 问大家一个EXCEL 问题, 先谢
真替你急。
你的问题和你有没有chart有关吗? 和你有几十个tab有关吗?
你的问题就是excel spreadsheet greyed out, 你不能用这四个关键字google吗?

:有一个TAB, 上面有个CHART, 我可以改这个CHART 的DATASOURCE。 但是这个CHART
以外的EXCEL CELL, 就是整个这个TAB 的BACKGROUND, 不能让我选择或做任何改动,
: 好像GREYOUT 的样子。 我看了, 好像也不是用PASSWORD PROTECT 的。 那
怎么就开这 PROTECT?
m******8
发帖数: 1676
33
来自主题: Military版 - 问大家一个EXCEL 问题, 先谢
这个WORKBOOK 是公司的, 都不知道原先作者是谁。
现在我要用现有的格式, 用新的DATASOURCE, 画图。最后存成PPT 或PDF。
所以我想在EXCEL 时就加上COMMENT, 不要等到后面PPT 或 PDF。
但是这个EXCEL 的CHART 没问题, 只是背景不能EDIT 加东西。
D********d
发帖数: 2154
34
来自主题: Automobile版 - 满版xc90 真是醉了
如 著名的炒作贴 “ XC90 销量暴跌 -96.3 %-DATASOURCE".
不停的吸引人的眼球,让人如此如醉。
D********d
发帖数: 2154
35
是啊:
XC90 销量暴跌-96.3 %- DATASOURC
D********d
发帖数: 2154
36
如 著名的炒作贴 “ XC90 销量暴跌 -96.3 %-DATASOURCE".
不停的吸引人的眼球。
D********d
发帖数: 2154
37
是啊:
XC90 销量暴跌-96.3 %- DATASOURC
D********d
发帖数: 2154
38
来自主题: Automobile版 - 捧杀 vs 杀捧, 谁的战斗力更强?
例如:
Volvo:DATASOURCE vs goVolvo
Toyota: ToyotaYaris vs RIHEI
……..
t*******d
发帖数: 1845
39
笑死了,你以及datasourc等马甲造谣被人揭穿轮番打脸,居然还有脸来
一个脑残粉顶是个黑
N********g
发帖数: 132
40
来自主题: JobHunting版 - Bloomberg面经【求祝福】
3. there are different kind of databases; given a query, system will tell
you which database you should connect(system gives you a string like "Oracle
" or "MySQL"). Design a class that could handle any query.
这题考的是separation of interface and implementation,code against interface
,not against implementation,如果做过JDBC开发,立马就知道什么意思。
好比你写了一些DAO(Database access object),就是用来把数据从数据库里面读出
来,然后交给中间层处理的工具类,但是你们开发组在不久的将来,打算把数据库由
oracle转成mysql。如果这些DAO里面的具体选取数据的方法,都跟oracle数据库相关,
都跟oralce对应的java class相关,那转数据库的时... 阅读全帖
N********g
发帖数: 132
41
来自主题: JobHunting版 - Bloomberg面经【求祝福】
3. there are different kind of databases; given a query, system will tell
you which database you should connect(system gives you a string like "Oracle
" or "MySQL"). Design a class that could handle any query.
这题考的是separation of interface and implementation,code against interface
,not against implementation,如果做过JDBC开发,立马就知道什么意思。
好比你写了一些DAO(Database access object),就是用来把数据从数据库里面读出
来,然后交给中间层处理的工具类,但是你们开发组在不久的将来,打算把数据库由
oracle转成mysql。如果这些DAO里面的具体选取数据的方法,都跟oracle数据库相关,
都跟oralce对应的java class相关,那转数据库的时... 阅读全帖
b*****X
发帖数: 22
42
来自主题: JobHunting版 - T a b l e a u 昂塞特面经
第三题我好像被问过 好像是想考线程安全吧 问我那个数据库的连接一多就会爆炸,问
我怎么限制,但是他问的特别隐晦,又是datasource又是接口什么的,后来才反应过来
是限制线程的数量。。当时用 synchronized写的,回家之后想起来好像应该用
semaphore 好一些
我补一下面经吧
1. 一个股票系统,每个时间段都有一个股价,给你一个时间window,计算当前window下
股价总和,
2. 设计扫雷游戏, 埋雷,挖雷,测试
3. 吃饭聊天
4. 和楼主这道题相似
我面之前也是各种准备树和图的题,LC, 因为glassdoor上好像都考的这些,结果考了
不少设计题,自己水平太差浪费了版上前辈的内推 T_T
b*****X
发帖数: 22
43
来自主题: JobHunting版 - T a b l e a u 昂塞特面经
第三题我好像被问过 好像是想考线程安全吧 问我那个数据库的连接一多就会爆炸,问
我怎么限制,但是他问的特别隐晦,又是datasource又是接口什么的,后来才反应过来
是限制线程的数量。。当时用 synchronized写的,回家之后想起来好像应该用
semaphore 好一些
我补一下面经吧
1. 一个股票系统,每个时间段都有一个股价,给你一个时间window,计算当前window下
股价总和,
2. 设计扫雷游戏, 埋雷,挖雷,测试
3. 吃饭聊天
4. 和楼主这道题相似
我面之前也是各种准备树和图的题,LC, 因为glassdoor上好像都考的这些,结果考了
不少设计题,自己水平太差浪费了版上前辈的内推 T_T
b********1
发帖数: 1299
44
不管谁查, 一般都是从三个bureaus拿分数. datasource都一样
S*********g
发帖数: 5298
45
有测试版或者demo吗?
真要拿这个东西来做trade的话,
我其实个人觉得,和datasource的链接,和exchange/broker的链接才是关键。
中间这部分,我个人觉得不是技术难点,没什么太大的技术壁垒。
u********e
发帖数: 4950
46
☆─────────────────────────────────────☆
dymu (我没昵称) 于 (Thu Jun 9 16:10:04 2011, 美东) 提到:
版上有人大户需要back testing engine+机器人(正在开发,年内完工)么?!
engine支持back-testing、genetic algorithm optimization、scanner和walk-
forward。
back-testing是system level,也就是多个portfolio放在一起可以money management
;每
个portfolio支持几百个1-min的instruments和几十个strategy没有问题,当然
strategy的复
杂度不能大高,O(n^2)没有问题。另外,每个portfolio也可以position-sizing,
ranking,这
些都可以通过implement 一套interface自定义,只要有过编程经验的人,很快就能上
手,语言
是.net。
我愿意直接出售该系统或者接受风投做精做大,有兴趣的朋友请联系。
☆─... 阅读全帖
S*******n
发帖数: 1867
47
看你好像是要 填入你想hide的column?
如果这样的话 你可能需要动态构建sql statement给那个datasource

段,
f**u
发帖数: 2769
48
you can find most of the information here:
https://www.google.com/fusiontables/DataSource?docid=1I-
Ds9FMZYBsGAhECn4TS8yWYHl4tDg7rxW7QeqY

employers
T*********I
发帖数: 10729
49
来自主题: NewJersey版 - 关于枪的讨论。
我拿你的datasource里的excel表格计算了一下,
Correlation between "Average firearms per 100 people" and "Homicide by
firearm rate per 100,000 pop" is -0.102
弱的负相关。就是说,武器数目和用武器谋杀率是弱的反比关系。这个弱的负相关和我
的结论倒是一致的。对于震慑的说法有小小加分。
其实你要真想做,应该把IQ和各州的谋杀率,同时把各国的IQ和个国的谋杀率做分析。
那个相关性比其他都要明显。
关于自杀,你要和基尼系数做分析。那个相关性比其他都要明显。负相关。就是说,越
大锅饭,自杀的人越多。
s*********b
发帖数: 815
50
来自主题: SanFrancisco版 - 苹果够狠
主要是一些扩展标准库的API变了。比如说javax.sql.DataSource的API增加了新方法。
1 2 3 下页 末页 (共3页)