Eclipse is an IDE. for writing code.
Java is a programming language
Hibernate is an Object Relational Mapping for mapping Java classes to database tables
Flex is a UI library for building client apps using Flash.
Spring Framework is tough to explain in a short reply. There are lots to Spring Framework many modules. In the core is a Dependency Injection framework.
Mark Spritzler wrote:
Hibernate is an Object Relational Mapping for mapping Java classes to database tables
Spring Framework is tough to explain in a short reply. There are lots to Spring Framework many modules. In the core is a Dependency Injection framework.
Mark
Mapping Java classes as in use SQL? What query language to use in that?
If it is not too much trouble, could you please explain what spring framework and dependency injection is? I want to know what we can do with it
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
7
posted
2
"What is X" type question are best answered by typing "what is X" into a search engine. For Spring you may want to start at the main Spring web site, I'm sure it has tons of introductory material. For DI, there's Wikipedia: Dependency injection
For an ORM, you can use SQL, or each ORM might have another query language that uses Objects and properties rather than tables and fields. They also tend to have built in find by id type methods as well as some have object oriented classes to build up a query with Java code. Some also allow projects like QueryDSL to be used.
As was stated the Spring framework contains many projects covering a wide variety of things. You can read more about the projects here:
http://www.springsource.org/projects
Ulf Dittmer wrote:"What is X" type question are best answered by typing "what is X" into a search engine. For Spring you may want to start at the main Spring web site, I'm sure it has tons of introductory material. For DI, there's Wikipedia: Dependency injection
Mark Spritzler wrote:For an ORM, you can use SQL, or each ORM might have another query language that uses Objects and properties rather than tables and fields. They also tend to have built in find by id type methods as well as some have object oriented classes to build up a query with Java code. Some also allow projects like QueryDSL to be used.
Bill Gorder wrote:As was stated the Spring framework contains many projects covering a wide variety of things. You can read more about the projects here:
http://www.springsource.org/projects