Skip to content

Commit e6a48c4

Browse files
committed
first commit
0 parents  commit e6a48c4

20 files changed

+5775
-0
lines changed

.babelrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"browsers": "defaults"
8+
},
9+
"useBuiltIns": "usage"
10+
}
11+
],
12+
"@babel/preset-react"
13+
],
14+
"plugins": [
15+
"@babel/plugin-proposal-class-properties"
16+
]
17+
}

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
### IntelliJ IDEA ###
14+
.idea
15+
*.iws
16+
*.iml
17+
*.ipr
18+
19+
### NetBeans ###
20+
/nbproject/private/
21+
/build/
22+
/nbbuild/
23+
/dist/
24+
/nbdist/
25+
/.nb-gradle/
26+
27+
/node_modules/

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Spring-react-SSR
2+
3+
This is a sample project that shows how to do server-side rendering using Spring Boot and React JS.
4+
5+
It is based on the [Spring Docs](https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-view-script)

0 commit comments

Comments
 (0)