Skip to content

Commit 583786b

Browse files
author
Sahir
committed
add reference, init sub project
1 parent c73ab2a commit 583786b

File tree

9 files changed

+51
-0
lines changed

9 files changed

+51
-0
lines changed

README.adoc

+7
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
== Spring Boot Tutorial
2+
3+
Spring boot tutorial
4+
5+
=== Reference
6+
- http://sahir.web.id
7+
8+

spring-boot-data/README.adoc

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
==== Sub Project : Spring Data JPA Multiple
2+
contoh untuk penerapan spring data jpa dengan lebih dari dua connection.
3+
4+
===== Reference
5+
-

spring-boot-mvc/README.adoc

Whitespace-only changes.

spring-boot-security/README.adoc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
==== Sub Project : Spring Security
2+
Contoh contoh spring security, mulai dari penerapan login dengan http auth, username password dan juga role
3+
4+
===== Reference
5+
- https://medium.com/@gustavo.ponce.ch/spring-boot-spring-mvc-spring-security-mysql-a5d8545d837d[Spring Boot + Spring MVC + Spring Security + MySQL]
6+
- http://www.baeldung.com/spring-security-basic-authentication[Spring Security Basic Authentication]
7+
- http://www.baeldung.com/spring-security-acl[Introduction to Spring Security ACL]
8+
- https://docs.spring.io/spring-security/site/docs/4.2.3.RELEASE/guides/html5/helloworld-xml.html[Hello Spring Security Xml Config]
9+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
subprojects {
2+
group 'id.web.sahir.tutorial.springboot.security'
3+
apply plugin: 'java'
4+
5+
/*Task that copies all the dependencies under build/libs */
6+
task copyDependencies(type: Copy) {
7+
from configurations.compile
8+
into 'build/libs'
9+
}
10+
11+
dependencies {
12+
compile boot.starter, misc.slf4jJcl, misc.logback
13+
testCompile boot.starterTest, testing.junit
14+
}
15+
}

spring-boot-themes/README.adoc

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
subprojects {
2+
group 'id.web.sahir.tutorial.springboot.themes'
3+
apply plugin: 'java'
4+
5+
/*Task that copies all the dependencies under build/libs */
6+
task copyDependencies(type: Copy) {
7+
from configurations.compile
8+
into 'build/libs'
9+
}
10+
11+
dependencies {
12+
compile boot.starter, misc.slf4jJcl, misc.logback
13+
testCompile boot.starterTest, testing.junit
14+
}
15+
}

0 commit comments

Comments
 (0)