Formação Básica
Common Level
- 01. Linux -> Basic
- 02. Java8 -> Give a look (lambdas, streams)
- Java OO - Oriented Programing
- JavaEE 6 and/or 7
- JPA ("Hibernate")
- CDI ("Spring", Tools for Dependency Injection)
- JTA
- EJB
- Java Servlet
- JAX-RS (Restful)
- JMX (Monitoring)
- JSF (Desirable)
- Books:
- Clean Code - A Handbook of Agile Software Craftsman - Robert C. Martin
- Effective Java (2nd Edition) - Joshua Bloch
- Release It!: Design and Deploy Production-Ready Software (Pragmatic Programmers)
- Growing Object-Oriented Software, Guided by Tests - Steve Freeman e Nat Pryce
- Good Practices
- 03. Spring Framework - Additional to Java EE CDI
- What is Inversion of Control Containers and the Dependency Injection pattern
- Spring Framework Inversion of Control
- SpringFramework -> http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#beans
- 04. Hibernate Basic Concepts And Examples - Additional to Java EE JPA:
- 05. Git
- 06. Maven -> http://maven.apache.org/ (goals, usage - command line)
- Build Applications With Maven:
- 07. SQL
Formação Específica
Platforms TIC
- Mauro Ramos - http://lattes.cnpq.br/0090146247740439
- Natal Neto - http://lattes.cnpq.br/8832508738840570
- Junit -> http://junit.org/junit4/
Mobile
- Marco Antônio - http://buscatextual.cnpq.br/buscatextual/busca.do
- Gustavo Henrique Garcia Silva - https://br.linkedin.com/in/gustavo-henrique-garcia-silva-40901454/en
- Vitor Oliveira Gomes - https://www.facebook.com/vitorolivg?fref=ts
- MySql
- Android Java
- PHP
- Phonegap
- Javascript
- AngularJS
- HTML + CSS
B2C - Business To Consumer
- Ben-Hur - https://www.facebook.com/benhurcarlos.langonijunior?fref=ts
- Lucas - http://lattes.cnpq.br/5431138608159842
- Design Patterns
- Refatoring to patterns
- Anti-patterns
- Books:
- Head First Design Patterns, - Eric T Freeman, Elisabeth Robson, Bert Bates, Kathy Sierra
- Refactoring to patterns - Joshua Kerievsky
- Implementation Patters - Kent Beck
- Resful API Checklist
- Tutorials
OSS - Operating Support System
- Alisson Marques Alvarenga - https://www.facebook.com/alissonmbr?fref=ts
- FlyWay
- JaxRS
- JPA - Hibernate
- Apache DeltaSpike
- WildFly
- AngularJS
- NPM
- Bower
- Gulp
Desafios
- Desafio 1
O primeiro desafio tem como objetivo o estudo das ferramentas: JAVA 8, Json, Spring Boot, Spring MVC, Maven e GitHub.
A tarefa desse desafio é construir uma aplicação Rest com JSON e JAVA8, utilizando Spring boot e Spring MVC. Essa aplicação terá 3 serviços expostos, são eles:
1º - Serviço que recebe um objeto via JSON e guarda o mesmo em memória (não precisa ser persistente).
2º - Serviço que recebe uma requisição GET com o parâmetro "nome" e retorna o objeto correspondente em JSON.
3º - Serviço que recebe uma requisição GET com o parâmetro "cpf" e retorna o objeto correspondente em JSON.
É solicitado também que o projeto seja inserido no GitHub.
Segue abaixo as entradas e saídas esperadas para cada serviço:
Serviço 1 -
Method: POST
Entrada:
{
- "nome": "Joao",
- "cpf": "05425687435",
- "idade": 23,
- "sexo":' M'
}
Saída:
{
- "Status": 0 //0 Sucesso e 1 falha
}
Serviço 2 -
Method: GET
Entrada: nome. Ex: {URL}/?nome=Joao
Saída:
{
- "nome": "Joao",
- "cpf": "05425687435",
- "idade": 23,
- "sexo":' M'
}
Serviço 3 -
Method: GET
Entrada: cpf. Ex: {URL}/?cpf=05425687435
Saída:
{
- "nome": "Joao",
- "cpf": "05425687435",
- "idade": 23,
- "sexo":' M'
}