由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 有人用过Spring吗?
相关主题
ETL process in JAVA. --有建议的请回这个贴。.jar 文件一问?
Web Seminar hosted by CINAOUG on 2011/06/13 (转载)how to set up multiple delimiter?
Re: JDBC and Sybase外行的问题??
JFTP bug test help一个 jar 文件,乍看里面有哪些 class ?
BBS CLIENT 不需要中文系统 v0.0.0.0.00001所有的project都不见了!
Open JarAnyone wants to talk about web frameworks?
Ant problemJetty, Tomcat, JBoss comparison
question about install jdbc讨论一下web framework吧
相关话题的讨论汇总
话题: spring话题: etl话题: file话题: xml话题: format
进入Java版参与讨论
1 (共1页)
m****u
发帖数: 15
1
俺是新手
Spring怎么在Windows上装机啊?
我下载了 spring-framework-2.5.6-with-dependencies.zip
http://www.springsource.com/download/community?project=Spring%20Framework
Unzip在C盘上后,发现build file 是针对Unix或者Linux的
有没有在Windows上直接可以装机的编译过的版本啊?
Spring本身就是server吧?
g*****g
发帖数: 34805
2
Spring is a series of api, if you don't know much about it.
Then maybe it's easier to start from a shipped application example.
e.g. AppFuse. It's not a server but often runs in a server container.

【在 m****u 的大作中提到】
: 俺是新手
: Spring怎么在Windows上装机啊?
: 我下载了 spring-framework-2.5.6-with-dependencies.zip
: http://www.springsource.com/download/community?project=Spring%20Framework
: Unzip在C盘上后,发现build file 是针对Unix或者Linux的
: 有没有在Windows上直接可以装机的编译过的版本啊?
: Spring本身就是server吧?

B*****g
发帖数: 34098
3
有没有ETL的?

【在 g*****g 的大作中提到】
: Spring is a series of api, if you don't know much about it.
: Then maybe it's easier to start from a shipped application example.
: e.g. AppFuse. It's not a server but often runs in a server container.

g*****g
发帖数: 34805
4
什么叫ETL?

【在 B*****g 的大作中提到】
: 有没有ETL的?
m****u
发帖数: 15
5
谢谢回复
我在照猫画虎,follow一本Spring的教材,一步一步,
教材光交代下载,然后unzip,也没说怎么设置,然后就说运行一个样本程序。
晕了

【在 g*****g 的大作中提到】
: Spring is a series of api, if you don't know much about it.
: Then maybe it's easier to start from a shipped application example.
: e.g. AppFuse. It's not a server but often runs in a server container.

c*****t
发帖数: 1879
6
extraction, transformation, loading that kind of data warehouse stuff.
It's weird to ask it here though.

【在 g*****g 的大作中提到】
: 什么叫ETL?
B*****g
发帖数: 34098
7
why?
俺们头逼着俺搞java

【在 c*****t 的大作中提到】
: extraction, transformation, loading that kind of data warehouse stuff.
: It's weird to ask it here though.

c*****t
发帖数: 1879
8
你把要求说一下吧,说不定有人能帮你。你不说清楚的话,ETL 太笼统。
再说没必要非得用 java 吧,除非你必须有 presentation (web / gui
等)。

【在 B*****g 的大作中提到】
: why?
: 俺们头逼着俺搞java

B*****g
发帖数: 34098
9
咱们现在用的ETL都是订好了map,比如说delimited file,第一个存到table A column
a, 第二个存到。。。。。所有文件都要按这个格式送。
现在要求这些map关系都存在db里,例如客户甲说,我要送fixed length file,1-8个c
har存到table A column a中。。。,客户乙说我要送excel。。。。客户可以自行控制
,随时更改。

【在 c*****t 的大作中提到】
: 你把要求说一下吧,说不定有人能帮你。你不说清楚的话,ETL 太笼统。
: 再说没必要非得用 java 吧,除非你必须有 presentation (web / gui
: 等)。

g*****g
发帖数: 34805
10
That sounds like a set of rules for transformation.
If I design it, I would describe it in XML, expose
a web interface for clients to edit it.

column
个c

【在 B*****g 的大作中提到】
: 咱们现在用的ETL都是订好了map,比如说delimited file,第一个存到table A column
: a, 第二个存到。。。。。所有文件都要按这个格式送。
: 现在要求这些map关系都存在db里,例如客户甲说,我要送fixed length file,1-8个c
: har存到table A column a中。。。,客户乙说我要送excel。。。。客户可以自行控制
: ,随时更改。

相关主题
Open Jar.jar 文件一问?
Ant problemhow to set up multiple delimiter?
question about install jdbc外行的问题??
进入Java版参与讨论
n*********n
发帖数: 580
11
要ETL的话,试试新的Spring Batch. 比一般ETL tool要难用些,只靠编程,但功能更
强。另外Spring的确出了个web server,加上Spring module project的话基本上是无
所不包了。目前也就SEAM能和Spring比肩。
w*r
发帖数: 2421
12
your requirement is typical for informatica work.. if your company willing
to
buy such tool . If not, write a script parser in java to parse something
like:
File=abc.dat
layout
column1Var char(10)
column2Var char(20);
insert into tableA(
col1,col2,col3) values(
simple lexicon rules, var defines in layout block, ETL/ELT block using SQL-
like
constructs to do the insert/update/upsert
Handle everything in Java using connection.preparestatement();
then you should be fine.
If application requires per
w*r
发帖数: 2421
13
in related to spring, you can build XML format script files and use spring's
inversion of control to construct your worker objects and then you are set
to
go, it might be easier than build lexicon parsers to parse script file.

【在 w*r 的大作中提到】
: your requirement is typical for informatica work.. if your company willing
: to
: buy such tool . If not, write a script parser in java to parse something
: like:
: File=abc.dat
: layout
: column1Var char(10)
: column2Var char(20);
: insert into tableA(
: col1,col2,col3) values(

B*****g
发帖数: 34098
14
we have ETL not informatica. My requirement is not typical.
For ETL you have to know the source format before creating a map.
For exp, if client send delimited file with 7 fields, then we create a map
to match this 7 fields to target. If client want send 8 fields or to wants
to send Fixed length file, we have to change the map. Now we want to have a
universal map can handle any format source based one the format information
in database.

【在 w*r 的大作中提到】
: your requirement is typical for informatica work.. if your company willing
: to
: buy such tool . If not, write a script parser in java to parse something
: like:
: File=abc.dat
: layout
: column1Var char(10)
: column2Var char(20);
: insert into tableA(
: col1,col2,col3) values(

B*****g
发帖数: 34098
15
how to store the format is not important. We need a tool can handle
performance. Such as multi cpu, we don't want to handle ourselves. SQL
loader is not accepted by DBAs.

's

【在 w*r 的大作中提到】
: in related to spring, you can build XML format script files and use spring's
: inversion of control to construct your worker objects and then you are set
: to
: go, it might be easier than build lexicon parsers to parse script file.

B*****g
发帖数: 34098
16
我们比较注意parse and loading. XML will be used for rules is DBAs allow me
to store XML in table.

【在 g*****g 的大作中提到】
: That sounds like a set of rules for transformation.
: If I design it, I would describe it in XML, expose
: a web interface for clients to edit it.
:
: column
: 个c

1 (共1页)
进入Java版参与讨论
相关主题
讨论一下web framework吧BBS CLIENT 不需要中文系统 v0.0.0.0.00001
有想学JSF的同行么? (确切地说 JSF+Spring+Hibernate)Open Jar
问个eclipse的问题Ant problem
spring transaction的问题question about install jdbc
ETL process in JAVA. --有建议的请回这个贴。.jar 文件一问?
Web Seminar hosted by CINAOUG on 2011/06/13 (转载)how to set up multiple delimiter?
Re: JDBC and Sybase外行的问题??
JFTP bug test help一个 jar 文件,乍看里面有哪些 class ?
相关话题的讨论汇总
话题: spring话题: etl话题: file话题: xml话题: format