Browse Source

Actualizo README.md borro Saludator.java

master
vigliom 1 year ago
parent
commit
6252dbc6df
3 changed files with 56 additions and 41 deletions
  1. +33
    -29
      .idea/workspace.xml
  2. +23
    -0
      README.md
  3. +0
    -12
      src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java

+ 33
- 29
.idea/workspace.xml View File

@ -4,19 +4,10 @@
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="d0e2ddd8-efdc-4dce-b0fd-07c7411e37c2" name="Changes" comment="">
<change afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/encodings.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/uiDesigner.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/java/com/jorpelu/ServicioDeProductos/Main.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/java/com/jorpelu/ServicioDeProductos/Producto.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/java/com/jorpelu/ServicioDeProductos/ServicioProductos.java" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/resources/beans.xml" afterDir="false" />
<list default="true" id="d0e2ddd8-efdc-4dce-b0fd-07c7411e37c2" name="Changes" comment="innnit">
<change afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java" beforeDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -46,22 +37,23 @@
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">{
&quot;keyToString&quot;: {
&quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
&quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
&quot;SHARE_PROJECT_CONFIGURATION_FILES&quot;: &quot;true&quot;,
&quot;WebServerToolWindowFactoryState&quot;: &quot;false&quot;,
&quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
&quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
&quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
&quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
&quot;project.structure.last.edited&quot;: &quot;Modules&quot;,
&quot;project.structure.proportion&quot;: &quot;0.15&quot;,
&quot;project.structure.side.proportion&quot;: &quot;0.2&quot;,
&quot;spring.configuration.checksum&quot;: &quot;ded2ef21d2f7ddd4afc5d55389ed18eb&quot;
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
"WebServerToolWindowFactoryState": "false",
"node.js.detected.package.eslint": "true",
"node.js.detected.package.tslint": "true",
"node.js.selected.package.eslint": "(autodetect)",
"node.js.selected.package.tslint": "(autodetect)",
"nodejs_package_manager_path": "npm",
"project.structure.last.edited": "Modules",
"project.structure.proportion": "0.15",
"project.structure.side.proportion": "0.2",
"spring.configuration.checksum": "ded2ef21d2f7ddd4afc5d55389ed18eb"
}
}</component>
}]]></component>
<component name="RunManager">
<configuration name="Main" type="Application" factoryName="Application" temporary="true" nameIsGenerated="true">
<option name="MAIN_CLASS_NAME" value="com.jorpelu.ServicioDeProductos.Main" />
@ -92,8 +84,16 @@
<updated>1669234080818</updated>
<workItem from="1669234082181" duration="4126000" />
<workItem from="1669327599329" duration="2673000" />
<workItem from="1669370939836" duration="886000" />
<workItem from="1669370939836" duration="2626000" />
</task>
<task id="LOCAL-00001" summary="innnit">
<created>1669371969480</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1669371969480</updated>
</task>
<option name="localTasksCounter" value="2" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
@ -110,4 +110,8 @@
</map>
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="innnit" />
<option name="LAST_COMMIT_MESSAGE" value="innnit" />
</component>
</project>

+ 23
- 0
README.md View File

@ -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
~~~

+ 0
- 12
src/main/java/com/jorpelu/ServicioDeProductos/Saludator.java View File

@ -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;
}
}

Loading…
Cancel
Save