diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..6fe96f9 --- /dev/null +++ b/.classpath @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.factorypath b/.factorypath new file mode 100644 index 0000000..efc4cd1 --- /dev/null +++ b/.factorypath @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..5514a0c --- /dev/null +++ b/.project @@ -0,0 +1,28 @@ + + + list + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.springframework.ide.eclipse.boot.validation.springbootbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + diff --git a/.settings/org.eclipse.core.resources.prefs b/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..839d647 --- /dev/null +++ b/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/main/resources=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/.settings/org.eclipse.jdt.apt.core.prefs b/.settings/org.eclipse.jdt.apt.core.prefs new file mode 100644 index 0000000..dfa4f3a --- /dev/null +++ b/.settings/org.eclipse.jdt.apt.core.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.apt.aptEnabled=true +org.eclipse.jdt.apt.genSrcDir=target/generated-sources/annotations +org.eclipse.jdt.apt.genTestSrcDir=target/generated-test-sources/test-annotations diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..3cba0a0 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.methodParameters=generate +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore +org.eclipse.jdt.core.compiler.processAnnotations=enabled +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/.settings/org.eclipse.m2e.core.prefs b/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/.settings/org.springframework.ide.eclipse.prefs b/.settings/org.springframework.ide.eclipse.prefs new file mode 100644 index 0000000..a12794d --- /dev/null +++ b/.settings/org.springframework.ide.eclipse.prefs @@ -0,0 +1,2 @@ +boot.validation.initialized=true +eclipse.preferences.version=1 diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2c50e61 --- /dev/null +++ b/pom.xml @@ -0,0 +1,58 @@ + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.2 + + + + com.todo + list + 0.0.1-SNAPSHOT + jar + + list + http://maven.apache.org + + + UTF-8 + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-devtools + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + + com.h2database + h2 + runtime + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.projectlombok + lombok + + + junit + junit + test + + + + diff --git a/src/main/java/com/todo/list/App.java b/src/main/java/com/todo/list/App.java new file mode 100644 index 0000000..a6bcf4f --- /dev/null +++ b/src/main/java/com/todo/list/App.java @@ -0,0 +1,19 @@ +package com.todo.list; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +/** + * Hello world! + * + */ + +@SpringBootApplication +public class App +{ + public static void main( String[] args ) + { + SpringApplication.run(App.class, args); + System.out.println( "ToDO List Aplication is live" ); + } +} diff --git a/src/main/java/com/todo/list/controller/ToDoController.java b/src/main/java/com/todo/list/controller/ToDoController.java new file mode 100644 index 0000000..5879639 --- /dev/null +++ b/src/main/java/com/todo/list/controller/ToDoController.java @@ -0,0 +1,75 @@ +package com.todo.list.controller; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import com.todo.list.entity.ToDo; +import com.todo.list.repository.ToDoRepository; + +//@RestController +@Controller +public class ToDoController { + + @Autowired + private ToDoRepository toDoRepository; + + @GetMapping("") + public String index() { + return "index"; + } + + @GetMapping("/logout") + public String logoutPage() { + return "logout"; + } + + + @GetMapping("/todos") + public String todos(Model model){ + model.addAttribute("todos", toDoRepository.findAll()); + return "todos"; + } + + + + @PostMapping("/todo") + public String add(@RequestParam String todoItem,@RequestParam String status,Model model) { + + ToDo toDo=new ToDo(); + toDo.setTodoItem(todoItem); + toDo.setCompleted(status); + toDoRepository.save(toDo); + model.addAttribute("todos", toDoRepository.findAll()); + return "redirect:/todos"; + + } + @PostMapping("/todoDelete/{id}") + public String delete(@PathVariable long id, Model model){ + toDoRepository.deleteById(id); + model.addAttribute("todos", toDoRepository.findAll()); + + return "redirect:/todos"; + } + + @PostMapping("/todoUpdate/{id}") + public String update(@PathVariable long id, Model model){ + ToDo toDo = toDoRepository.findById(id).get(); + if("Yes".equals(toDo.getCompleted())){ + toDo.setCompleted("No"); + } else { + toDo.setCompleted("Yes"); + } + toDoRepository.save(toDo); + model.addAttribute("todos", toDoRepository.findAll()); + return "redirect:/todos"; + } + + + +} diff --git a/src/main/java/com/todo/list/entity/ToDo.java b/src/main/java/com/todo/list/entity/ToDo.java new file mode 100644 index 0000000..52719e4 --- /dev/null +++ b/src/main/java/com/todo/list/entity/ToDo.java @@ -0,0 +1,25 @@ +package com.todo.list.entity; + +import jakarta.persistence.Entity; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Id; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Entity +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ToDo { + + @Id + @GeneratedValue(strategy = GenerationType.AUTO) + private long id; + private String todoItem; + private String completed; + + + +} diff --git a/src/main/java/com/todo/list/repository/ToDoRepository.java b/src/main/java/com/todo/list/repository/ToDoRepository.java new file mode 100644 index 0000000..40e63a6 --- /dev/null +++ b/src/main/java/com/todo/list/repository/ToDoRepository.java @@ -0,0 +1,9 @@ +package com.todo.list.repository; + +import org.springframework.data.jpa.repository.JpaRepository; + +import com.todo.list.entity.ToDo; + +public interface ToDoRepository extends JpaRepository { + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..e2b41c4 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,12 @@ +spring.application.name=todo + + +spring.datasource.url=jdbc:h2:mem:todo_db +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.username=sa +spring.datasource.password= +spring.jpa.database-platform=org.hibernate.dialect.H2Dialect + +# Enable H2 Console (for debugging) +spring.h2.console.enabled=true +spring.h2.console.path=/h2-console diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html new file mode 100644 index 0000000..3eef3df --- /dev/null +++ b/src/main/resources/templates/index.html @@ -0,0 +1,43 @@ + + + + + + + Index Page + + + + + +
+

Welcome to Todo Manager

+
+
+
+ +
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/src/main/resources/templates/logout.html b/src/main/resources/templates/logout.html new file mode 100644 index 0000000..5e03299 --- /dev/null +++ b/src/main/resources/templates/logout.html @@ -0,0 +1,43 @@ + + + + + + + Index Page + + + + + +
+

You come again todo manager page

+
+
+
+ +
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/src/main/resources/templates/todos.html b/src/main/resources/templates/todos.html new file mode 100644 index 0000000..e3d3e5e --- /dev/null +++ b/src/main/resources/templates/todos.html @@ -0,0 +1,111 @@ + + + + + + + Index Page + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + +
IdTodoStatusUpdateDelete
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+ + + +
+ + + + + \ No newline at end of file diff --git a/src/test/java/com/todo/list/AppTest.java b/src/test/java/com/todo/list/AppTest.java new file mode 100644 index 0000000..e0e6f3e --- /dev/null +++ b/src/test/java/com/todo/list/AppTest.java @@ -0,0 +1,38 @@ +package com.todo.list; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/target/classes/META-INF/MANIFEST.MF b/target/classes/META-INF/MANIFEST.MF new file mode 100644 index 0000000..7c75ad6 --- /dev/null +++ b/target/classes/META-INF/MANIFEST.MF @@ -0,0 +1,6 @@ +Manifest-Version: 1.0 +Build-Jdk-Spec: 17 +Implementation-Title: list +Implementation-Version: 0.0.1-SNAPSHOT +Created-By: Maven Integration for Eclipse + diff --git a/target/classes/META-INF/maven/com.todo/list/pom.properties b/target/classes/META-INF/maven/com.todo/list/pom.properties new file mode 100644 index 0000000..9439e4f --- /dev/null +++ b/target/classes/META-INF/maven/com.todo/list/pom.properties @@ -0,0 +1,7 @@ +#Generated by Maven Integration for Eclipse +#Sun Feb 02 11:39:13 IST 2025 +m2e.projectLocation=C\:\\Users\\admin\\OneDrive\\Documents\\Projetcs\\CustomerProductManagement\\list +m2e.projectName=list +groupId=com.todo +artifactId=list +version=0.0.1-SNAPSHOT diff --git a/target/classes/META-INF/maven/com.todo/list/pom.xml b/target/classes/META-INF/maven/com.todo/list/pom.xml new file mode 100644 index 0000000..2c50e61 --- /dev/null +++ b/target/classes/META-INF/maven/com.todo/list/pom.xml @@ -0,0 +1,58 @@ + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.2 + + + + com.todo + list + 0.0.1-SNAPSHOT + jar + + list + http://maven.apache.org + + + UTF-8 + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-devtools + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + + com.h2database + h2 + runtime + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.projectlombok + lombok + + + junit + junit + test + + + + diff --git a/target/classes/application.properties b/target/classes/application.properties new file mode 100644 index 0000000..e2b41c4 --- /dev/null +++ b/target/classes/application.properties @@ -0,0 +1,12 @@ +spring.application.name=todo + + +spring.datasource.url=jdbc:h2:mem:todo_db +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.username=sa +spring.datasource.password= +spring.jpa.database-platform=org.hibernate.dialect.H2Dialect + +# Enable H2 Console (for debugging) +spring.h2.console.enabled=true +spring.h2.console.path=/h2-console diff --git a/target/classes/com/todo/list/App.class b/target/classes/com/todo/list/App.class new file mode 100644 index 0000000..c8fddb1 Binary files /dev/null and b/target/classes/com/todo/list/App.class differ diff --git a/target/classes/com/todo/list/controller/ToDoController.class b/target/classes/com/todo/list/controller/ToDoController.class new file mode 100644 index 0000000..926a7db Binary files /dev/null and b/target/classes/com/todo/list/controller/ToDoController.class differ diff --git a/target/classes/com/todo/list/entity/ToDo.class b/target/classes/com/todo/list/entity/ToDo.class new file mode 100644 index 0000000..d08b77c Binary files /dev/null and b/target/classes/com/todo/list/entity/ToDo.class differ diff --git a/target/classes/com/todo/list/repository/ToDoRepository.class b/target/classes/com/todo/list/repository/ToDoRepository.class new file mode 100644 index 0000000..fc864a5 Binary files /dev/null and b/target/classes/com/todo/list/repository/ToDoRepository.class differ diff --git a/target/classes/templates/index.html b/target/classes/templates/index.html new file mode 100644 index 0000000..3eef3df --- /dev/null +++ b/target/classes/templates/index.html @@ -0,0 +1,43 @@ + + + + + + + Index Page + + + + + +
+

Welcome to Todo Manager

+
+
+
+ +
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/target/classes/templates/logout.html b/target/classes/templates/logout.html new file mode 100644 index 0000000..5e03299 --- /dev/null +++ b/target/classes/templates/logout.html @@ -0,0 +1,43 @@ + + + + + + + Index Page + + + + + +
+

You come again todo manager page

+
+
+
+ +
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/target/classes/templates/todos.html b/target/classes/templates/todos.html new file mode 100644 index 0000000..e3d3e5e --- /dev/null +++ b/target/classes/templates/todos.html @@ -0,0 +1,111 @@ + + + + + + + Index Page + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + +
IdTodoStatusUpdateDelete
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+
+ + + +
+ + + + + \ No newline at end of file diff --git a/target/test-classes/com/todo/list/AppTest.class b/target/test-classes/com/todo/list/AppTest.class new file mode 100644 index 0000000..7ff9a2d Binary files /dev/null and b/target/test-classes/com/todo/list/AppTest.class differ