Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
N
nuevovinc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Julio Fabricio Jaramillo
nuevovinc
Commits
8bf68a03
Commit
8bf68a03
authored
Feb 13, 2019
by
Julio Fabricio Jaramillo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listo
parent
8db7ca30
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
36 additions
and
0 deletions
+36
-0
hola_mundo.class
bin/ec/edu/espe/controller/hola_mundo.class
+0
-0
VinculacionwsApplication.class
bin/ec/edu/espe/vinculacionws/VinculacionwsApplication.class
+0
-0
VinculacionwsApplicationTests.class
...du/espe/vinculacionws/VinculacionwsApplicationTests.class
+0
-0
application.properties
bin/main/application.properties
+1
-0
hola.class
bin/main/ec/edu/espe/controller/hola.class
+0
-0
hola_mundo.class
bin/main/ec/edu/espe/controller/hola_mundo.class
+0
-0
build.gradle
build.gradle
+3
-0
hola.java
src/main/java/ec/edu/espe/controller/hola.java
+14
-0
hola_mundo.java
src/main/java/ec/edu/espe/controller/hola_mundo.java
+17
-0
application.properties
src/main/resources/application.properties
+1
-0
No files found.
bin/ec/edu/espe/controller/hola_mundo.class
0 → 100644
View file @
8bf68a03
File added
bin/ec/edu/espe/vinculacionws/VinculacionwsApplication.class
0 → 100644
View file @
8bf68a03
File added
bin/ec/edu/espe/vinculacionws/VinculacionwsApplicationTests.class
0 → 100644
View file @
8bf68a03
File added
bin/main/application.properties
View file @
8bf68a03
spring.autoconfigure.exclude
=
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
bin/main/ec/edu/espe/controller/hola.class
0 → 100644
View file @
8bf68a03
File added
bin/main/ec/edu/espe/controller/hola_mundo.class
0 → 100644
View file @
8bf68a03
File added
build.gradle
View file @
8bf68a03
...
...
@@ -19,3 +19,6 @@ dependencies {
implementation
'org.springframework.boot:spring-boot-starter-web'
testImplementation
'org.springframework.boot:spring-boot-starter-test'
}
src/main/java/ec/edu/espe/controller/hola.java
0 → 100644
View file @
8bf68a03
package
ec
.
edu
.
espe
.
controller
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@RestController
public
class
hola
{
@RequestMapping
(
"/"
)
public
String
hello
()
{
return
"Hola mundo"
;
}
}
src/main/java/ec/edu/espe/controller/hola_mundo.java
0 → 100644
View file @
8bf68a03
package
ec
.
edu
.
espe
.
controller
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.context.annotation.ComponentScan
;
@SpringBootApplication
@ComponentScan
public
class
hola_mundo
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
hola_mundo
.
class
,
args
);
}
}
\ No newline at end of file
src/main/resources/application.properties
View file @
8bf68a03
spring.autoconfigure.exclude
=
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment