This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
public class Triangular { | |
public static int triangular(int totalDot) { | |
System.out.print("\n"); | |
for (int i = 0; i < totalDot; i++) { | |
for (int j = 1; j <= totalDot - i; j++) { | |
System.out.print("*"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pom.xml : | |
<spring-framework.version>4.1.1.RELEASE</spring-framework.version> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>${spring-framework.version}</version> | |
</dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/spring-guides |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://briansjavablog.blogspot.com/2013/01/spring-web-services-tutorial.html#comment-form | |
https://spring.io/guides/gs/consuming-web-service/ | |
http://myshittycode.com/2013/10/01/using-spring-web-services-and-jaxb-to-invoke-web-service-based-on-wsdl/ | |
http://www.concretepage.com/spring-4/spring-4-soap-web-service-producer-consumer-example-with-tomcat | |
https://github.com/spring-guides/gs-consuming-web-service/issues/6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.Serializable; | |
import javax.xml.bind.annotation.XmlAccessType; | |
import javax.xml.bind.annotation.XmlAccessorType; | |
import javax.xml.bind.annotation.XmlElement; | |
import javax.xml.bind.annotation.XmlRootElement; | |
import javax.xml.bind.annotation.XmlType; | |
import javax.xml.bind.annotation.XmlSchema; | |
import javax.xml.bind.annotation.XmlNsForm; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.theserverside.com/news/thread.tss?thread_id=32389 | |
http://www.javacodegeeks.com/2011/09/on-dtos.html | |
http://www.petrikainulainen.net/programming/spring-framework/integration-testing-of-spring-mvc-applications-rest-api-part-two/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://martinfowler.com/articles/richardsonMaturityModel.html | |
https://spring.io/understanding/HATEOAS | |
http://www.nurkiewicz.com/2012/02/automatically-generating-wadl-in-spring.html | |
https://blog.safaribooksonline.com/2013/09/30/rest-hypermedia/ | |
https://www.jiwhiz.com/blogs/Design_and_Build_RESTful_API_with_Spring_HATEOAS | |
http://blog.zenika.com/index.php?post/2013/07/11/Documenting-a-REST-API-with-Swagger-and-Spring-MVC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://msdn.microsoft.com/en-us/library/ff921152.aspx | |
http://www.codeproject.com/Articles/615139/An-Absolute-Beginners-Tutorial-on-Dependency-Inver | |
https://msdn.microsoft.com/en-us/library/vstudio/hh323705(v=vs.100).aspx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.slideshare.net/analizator/spring-framework-core | |
http://www.slideshare.net/pmanvi/spring-framework-overview-ppt-3068245 | |
http://www.javalobby.org/articles/guice-vs-spring/ | |
https://keyholesoftware.com/2014/02/17/dependency-injection-options-for-java/ | |
https://news.ycombinator.com/item?id=4280741 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://netbeans.org/kb/docs/javaee/ecommerce/netbeans-ecommerce-tutorial.html |