From 6252dbc6df6af4e36a24ddfb170da90755197dec Mon Sep 17 00:00:00 2001 From: vigliom Date: Fri, 25 Nov 2022 11:53:11 +0100 Subject: [PATCH] Actualizo README.md borro Saludator.java --- .idea/workspace.xml | 62 ++++++++++--------- README.md | 23 +++++++ .../ServicioDeProductos/Saludator.java | 12 ---- 3 files changed, 56 insertions(+), 41 deletions(-) create mode 100644 README.md delete mode 100644 src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 7377d99..67a3759 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,19 +4,10 @@ + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..c8760e3 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Servicio de productos +### Introduccion +Creo un SpringCore Con el servicio de consultar productos con sus precios y todas las caracteristicas. +### Documentacion +#### Dependencias importadas: +~~~ +org.springframework id:spring-context v: 6.0.0 +~~~ + +### Salida por pantalla +~~~ +id: 1 +nombre: nombreProducto +descripcion: : descripcion_producto +cantidad: 100 +precio: 19.99 +Process finished with exit code 0 +~~~ +### Explicación de la Actividad + +Por ahora, Solo crea y genera un producto a traves de un BEAN, donde se +inicializa un BEAN con el producto y con servicio producto, lo utiliza +~~~ \ No newline at end of file diff --git a/src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java b/src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java deleted file mode 100644 index 89f20b2..0000000 --- a/src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.jorpelu.ServicioDeProductos; - -public class Saludator { - private String mensaje; - public String saludo(){ - return (mensaje==null) ? "No se ha encontrado el mensaje... " : mensaje; - } - - public Saludator(String mensaje) { - this.mensaje = mensaje; - } -}