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
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>spring-hibernate-simples</groupId> | |
| <artifactId>spring-hibernate-simples</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <packaging>jar</packaging> | |
| <name>spring-hibernate-simples</name> |
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
| public final class LazySingleton { | |
| private volatile static LazySingleton instance; | |
| private LazySingleton() { | |
| } | |
| public static LazySingleton getInstance() { | |
| if (instance == null) { | |
| synchronized (LazySingleton.class) { |
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
| public final class PersonImmutableBuilder { | |
| private final String name; | |
| private final String cpf; | |
| public PersonImmutableBuilder() { | |
| this(null, null); | |
| } | |
| private PersonImmutableBuilder(final String name, final String cpf) { |
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 static java.util.concurrent.TimeUnit.MILLISECONDS; | |
| import java.util.ArrayList; | |
| import java.util.concurrent.TimeUnit; | |
| import java.util.concurrent.atomic.AtomicInteger; | |
| import java.util.concurrent.locks.Lock; | |
| import java.util.concurrent.locks.ReentrantReadWriteLock; | |
| public final class ArrayListThreadSafe { |
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 static java.util.concurrent.TimeUnit.SECONDS; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Collections; | |
| import java.util.List; | |
| import java.util.concurrent.ArrayBlockingQueue; | |
| import java.util.concurrent.Callable; | |
| import java.util.concurrent.ExecutionException; | |
| import java.util.concurrent.Future; |
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
| package br.com.simpledev.struts2.action; | |
| import java.util.List; | |
| import org.apache.struts2.convention.annotation.Action; | |
| import org.apache.struts2.convention.annotation.Namespace; | |
| import org.apache.struts2.convention.annotation.Result; | |
| import br.com.simpledev.struts2.dao.CarroDao; | |
| import br.com.simpledev.struts2.dao.jdbc.JdbcCarroDao; |
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
| package br.com.simpledev.struts2.action; | |
| import java.util.List; | |
| import org.apache.struts2.convention.annotation.Action; | |
| import org.apache.struts2.convention.annotation.Namespace; | |
| import org.apache.struts2.convention.annotation.ParentPackage; | |
| import org.apache.struts2.convention.annotation.Result; | |
| import br.com.simpledev.struts2.dao.LocalidadeDao; |
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
| <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:context="http://www.springframework.org/schema/context" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans | |
| http://www.springframework.org/schema/beans/spring-beans-3.1.xsd | |
| http://www.springframework.org/schema/context | |
| http://www.springframework.org/schema/context/spring-context-3.1.xsd"> | |
| <context:component-scan base-package="br.com.simpledev.struts2spring" /> |
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
| package br.com.spider; | |
| import java.io.IOException; | |
| import java.net.URL; | |
| import java.net.URLConnection; | |
| import java.util.Scanner; | |
| import java.util.Set; | |
| public class ContentReader { |
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
| package br.com.simpledev.spring.controller; | |
| import static org.springframework.web.bind.annotation.RequestMethod.GET; | |
| import static org.springframework.web.bind.annotation.RequestMethod.POST; | |
| import static org.springframework.web.bind.annotation.RequestMethod.PUT; | |
| import java.util.List; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.stereotype.Controller; |
OlderNewer