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.
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 have a Web Service and I'm trying to add a simple Web User interface with the ability of adding some text and uploading file. what is the simplest and easiest one to use and compatible with Java. I'm using eclipse to develop my application.
I don't need a lot of support I just want it to be easy to use.
I can recommend wicket (http://wicket.apache.org/) you won't have licence restrictions (it's an Apache licence) and it's a time resistent solution: JSF are too complex for simple use cases, and Struts is quite as complicated but a rather old technology. GWT is too complex and time conuming for small projects.
You can naturally use bare Servlets or JSPs if you're really in very simple use cases.
Best Regards,
Zied Hamdi
http://1vu.fr
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 new to mobile testing and i want to test the ios apps through any of the automation tools available in the market,could you please suggest me which tool is best ? and useful links to that tool for how to use that tool in a proper manner
I personally prefer Calabash which is built on Cucumber if you want to do acceptance tests. Then you can automate your builds using Jenkins. There are support for Cucumber in Jenkins as well, you can find it here.
You can use Gorrila and TestStudio.
Also StackOverFlow
Another option is Appium, which lets you write tests in many languages and test frameworks.
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
Can anybody tell me how to implement single signon in my spring application.(Tomcat or Jboss server)
share me any documentation or link to bring this feature in my spring app.
I am using spring 2.5.6 .
Pls do the needful.
What you need is spring-security.
It supports both OpenID and CAS out of the box, but you'll need to do some research on your own on those.
If you need just basic SSO functionality I can recommend just implementing your own UsernamePasswordAuthenticationFilter and/or AbstractPreAuthenticatedProcessingFilter and using cookies. This answer will help you do that.
You also should have a look at the spring-security docs and then ask a more specific question if you need to.
You can use CAS (Central Authentication Service)
http://www.jasig.org/cas
If you're looking for an out of the box solution Cloudseal could be a good option as it includes single sign on, user management and two factor authentication. There is a dedicated Spring client available for the platform
N.B. I work for Cloudseal so I'm biased!
You might also want to consider Kerberos. Below is a detailed Javadoc on the same --
http://download.oracle.com/javase/1.4.2/docs/guide/security/jgss/single-signon.html
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.
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'm looking for a lightweight framework that builds on top of the Process Manager pattern:
http://www.eaipatterns.com/ProcessManager.html
I'm specifically interested in using this for doing event processing whereby I'm interested in the success or failure outcome of a particular event and passing a message on to another "stage" based on this outcome. There may be other outcomes aside from success and failure, so I want something that's a little flexible...
I'm not really looking for a heavyweight ESB to handle this sort of situation since it seems like complete overkill. Spring integration looks ok for this sort of thing. Can anybody recommend any other frameworks to help achieve this?
The alternative is to build something using the basic Spring framework...
The Apache Camel project implements the patterns from the EIP book. I think it does exactly what you need.
Camel can be used with Spring and can be deployed in several different containers, depending on your requirements.