Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Where can I find Spring 3 IoC JavaConfig (annotations) tutorial? If possible, please provide tutorials with source code example in SpringSource Tool Suite/maven project.
Thanks.
Update: I would like to have working examples with source code that I can immediately compile and run. There a number of old working examples for Spring 2 IoC (e.g. books' examples etc) but I still can't find for Spring 3 IoC. Thanks.
Start with:
Spring Reference: Java-based container configuration
If there's anything you don't understand, ask specific questions.
Mkyong.com have few examples (1, 2) with source code. Finally found answer for my first stackoverflow question after about half a year.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to develop a plugin for intellij , but I find that the resource about that is very little,and there isn't a book about it ,so anyone know about this resource or book ? thank you very much
This page should help you out:
http://www.jetbrains.com/idea/features/open_api_plugin_manager.html
Essentially you'll need to learn the Open API, which isn't too difficult, and you can visit several of the plugin examples that exist out there to see how others are doing things. Some plugins with source:
https://github.com/kinabalu/mysticpaste/tree/master/idea-plugin
http://blogs.jetbrains.com/idea/2012/10/check-out-more-than-200-open-source-plugins/ (lots of plugin example code here)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to learn PrimeFaces. For this I think its showcase would be the good way to start.
But I want to run this offline, like we can download showcase for struts and run it. Same I want to download the showcase of PrimesFaces.
But I couldn't find the direct link. Help me out with this.
Also recommend me some good book to get deep knowledge about primeFaces.
Here it is, you can grab it from primefaces repository
primefaces/showcase/
Regarding the book/ knowledge base, take a look at the Documentation Section, you will find lots of info about primefaces over there.
You can see more details about how can you use it at http://www.mkyong.com/jsf2/primefaces/download-primefaces-showcase-and-source-code/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Whenever i search in the internet for log4j tutorial, i got the sample property filr or configuration file, but did not get the tutorial on how to configure property file and xml file...
The official documentation of apache for log4j is not clear,
Can somebody post the link for log4j tutorials...?
If there is any books available online, it would be helpful to download and study..
This tutorial from Lalinuna is great. There is also pdf and source code with snippets of code. Go for it :)
The Log4j manual covers every aspect, from API to configuration. It's quite short, but very complete.
Here's one. I've found another link for you.
DZone's tutorial*
*(this chars is just to pass the answers's body validator!!!!! ;))
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to see some usage samples of JPA orm.xml. If some one direct me to a link,
The schema is here,
http://java.sun.com/xml/ns/persistence/orm_2_0.xsd
There are lots of samples of each mapping type here,
http://en.wikibooks.org/wiki/Java_Persistence
Lots of examples here,
http://wiki.eclipse.org/EclipseLink/Examples/JPA
In particular,
http://wiki.eclipse.org/EclipseLink/Examples/JPA/EmployeeXML
This may not be a complete answer but, http://www.jpox.org/docs/1_2/tutorials/jpa_tutorial.html uses JPA 1.0. However, it was of use when I created my ORM.xml for JPA 2.0. I know "Enterprise JavaBeans 3.0" from O'Reilly has good examples too. Otherwise you have to look at the schema (would post the link but apparently I don't have enough rep to post multiple links) and match it up with annotations examples...at least that is what I had to do.
ORM.xml appears to be falling out of favor for the annotation version, which explains the difficulty of finding any good examples of ORM.xml file.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Could anyone point me towards some good, detailed, sample Spring applications?
Ideally those with good test coverage!
Checkout the sample projects from the SpringFramework Subversion repository:
https://src.springframework.org/svn/spring-samples/
Demo project based on Spring's Petclinic that aims to integrate various frameworks: Spring MVC, Spring Webflow, Freemarker, Sitemesh, Hibernate, Acegi, DWR.here There will be three subprojects that differ in complexity and should cover most web application requirements.
https://code.google.com/p/petclinicplus/
You can try out Spring's PetClinic.
Or another good option is to test Spring's tutorials that are available from the dashboard inside SpringSource Tool Suite.
Spring by Example.
This tutorial can help you: http://static.springsource.org/docs/Spring-MVC-step-by-step/
It's a simple app developed step by step.