All Projects → fatihtotrakanli → SpringBoot-JSP-CRUD-Application

fatihtotrakanli / SpringBoot-JSP-CRUD-Application

Licence: other
No description or website provided.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to SpringBoot-JSP-CRUD-Application

Online study system
在线学习管理系统,SSM框架的简单实践
Stars: ✭ 74 (+428.57%)
Mutual labels:  jsp
Estore
一个基于JavaWeb的网上电子购物城项目,实现展示商品、购买商品、提交订单、持久化保存到数据库等基本功能
Stars: ✭ 157 (+1021.43%)
Mutual labels:  jsp
Webshell
入侵分析时发现的Webshell后门
Stars: ✭ 201 (+1335.71%)
Mutual labels:  jsp
Tarena Java Textbooks
达内 Java 全套教材
Stars: ✭ 75 (+435.71%)
Mutual labels:  jsp
Estore
Java 语言实现的 苹果网上商城 ,前端模仿 苹果爱否 商城的页面 ,后端运用纯 Servlet + JSP +c3p0 数据库连接池以及web 相关技术,实现的基础功能包括前后台、实现展示首页、管理商品页面、商品分类、添加购物车、购买、提交订单 、联系客服等 ,欢迎 star,谢谢!!!
Stars: ✭ 129 (+821.43%)
Mutual labels:  jsp
Spring Boot Examples
个人学习 SpringBoot2.x 写的一些示例程序,目前正在持续更新中.....
Stars: ✭ 159 (+1035.71%)
Mutual labels:  jsp
Egov Smartcity Suite
eGov SmartCity eGovernance suite of products aim to improve the internal efficiency, transparency, accountability and the service delivery of Municipal Governments. The solution is freely available under the license terms as mentioned below.
Stars: ✭ 70 (+400%)
Mutual labels:  jsp
Javastud
Official, Main: This is Core/Advance java example series project. It help to learn java step by step using pdf tutorial provided here and corresponding demo project for the eclipse. Tag: Java Student, Java Stud, Stud Java, StudJava, Java Teachers, Studs Quick Start Guide, Studs Java, Object Oriented Programming, Core Java, Java SE, Java EE, Java Enterprise Edition, Java Blog, Java Articles, Java Web, JSP, Servlet, Maven, Spring, Hibernate, Spring-boot, Spring MVC Web, Angular JS, Angular 2, Java Security, Java CRUD, Java Login Example, File Handling, Multi threading, exception handling, Collection classes, Swing, Database, Date Time, Joda Time, JPA.
Stars: ✭ 220 (+1471.43%)
Mutual labels:  jsp
Registration Login Spring Xml Maven Jsp Mysql
Registration and Login Example with Spring MVC, Spring Security, Spring Data JPA, XML Configuration, Maven, JSP, and MySQL.
Stars: ✭ 134 (+857.14%)
Mutual labels:  jsp
Bamboobsc
bambooBSC is an opensource Balanced Scorecard (BSC) Business Intelligence (BI) Web platform. BSC's Vision, Perspectives, Objectives of strategy, Key Performance Indicators (KPIs), Strategy Map, and SWOT, PDCA & PDCA report, Time Series Analysis.
Stars: ✭ 197 (+1307.14%)
Mutual labels:  jsp
Springboot Projects Fullstack
Spring Boot, JDBC, ORM, JPA, Hibernate, H2, MySQL, Oracle
Stars: ✭ 76 (+442.86%)
Mutual labels:  jsp
Attend
JSP+Servlet+JDBC+MySQL+Bootstrap搭建的一个简单的考勤系统
Stars: ✭ 81 (+478.57%)
Mutual labels:  jsp
Crud
CRUD is Really Urgly coDed -- 万能快速原型系统
Stars: ✭ 162 (+1057.14%)
Mutual labels:  jsp
Selectcource
学生选课管理信息系统(学生时代的课程设计,停更)。
Stars: ✭ 74 (+428.57%)
Mutual labels:  jsp
Registration Login Spring Hsql
Registration and Login Example with Spring Security, Spring Boot, Spring Data JPA, HSQL, JSP
Stars: ✭ 208 (+1385.71%)
Mutual labels:  jsp
Uranus
Hierarchical Memo & Task Web-App
Stars: ✭ 71 (+407.14%)
Mutual labels:  jsp
Bytecode Viewer
A Java 8+ Jar & Android APK Reverse Engineering Suite (Decompiler, Editor, Debugger & More)
Stars: ✭ 12,606 (+89942.86%)
Mutual labels:  jsp
Javaweb Project Source Share
🌱🚀分享基于Servlet、SSH、SSM、SpringBoot等流行技术实现的JavaWeb项目,难度分为5个等级,帮助小白入门JavaWeb开发,协助JavaWeb开发者熟悉最新技术
Stars: ✭ 229 (+1535.71%)
Mutual labels:  jsp
Java Interview Questions
1000+ Java Interview Questions
Stars: ✭ 212 (+1414.29%)
Mutual labels:  jsp
Domt
这是一个J2EE学生宿舍管理系统, 能完成学生班级楼栋宿舍等的基本管理, 能够智能批量地分配和腾空宿舍, 能够统计打印学生和宿舍入住名单
Stars: ✭ 190 (+1257.14%)
Mutual labels:  jsp

Description

This project contains the answer to the following question.

Write a web app with using Spring Boot,there will be User registration with fields "name" , "surname" and "address" and you will display these informantions in a grid. Also we could do UPDATE,DELETE,CREATE,READ operations in grid.

Which Technologies We Will Use?

Crud operations were performed using Spring Boot, H2 (Memory Based) Database and JSP.

Spring Boot was developed to be the fastest and easiest way to develop Spring based applications a framework. Thanks to Spring Boot, we can get rid of boilerplate code We can write the code. The Spring Boot web server comes with embedded Tomcat and many other additional features. By running the Application class in the project, it is getting up to speed. Embedded Tomcat there is no need to create additional servers for the server.

H2 Database is an "Open Source" SQL database written in Java. Therefore it is a memory-based database, it disappears when the application is finished.

Maven Project

After cloning the project you can import it to your IDE then run the "mvn clean install" command. By running the Application class in the project, it is getting up to run.

  • OR

you can go to project directory, then run the following command;

  mvn clean install 

  java -jar target/myapp-1.0-SNAPSHOT.jar

`myapp will be the name of your project.

If everything works correctly, you can start the CRUD operations with following URL.

  http://localhost:8080/index 

If the project does not start with Application.class, please try the following command at Terminal.

mvn spring-boot:run
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].