Changeset 044bd76
- Timestamp:
- 01/30/23 23:34:33 (22 months ago)
- Branches:
- master
- Children:
- 9280859
- Parents:
- 763289e
- Location:
- src/main
- Files:
-
- 7 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/edu/gjoko/schedlr/config/AppSecurityConfig.java
r763289e r044bd76 51 51 .antMatchers("/homepage").permitAll() 52 52 .antMatchers("/css/**").permitAll() 53 .antMatchers("/js/**").permitAll() 53 54 .antMatchers("/anonymous*").anonymous() 54 55 .anyRequest() -
src/main/java/edu/gjoko/schedlr/config/MvcConfig.java
r763289e r044bd76 15 15 registry.addViewController("/homepage").setViewName("homepage"); 16 16 } 17 18 17 19 } -
src/main/java/edu/gjoko/schedlr/controllers/HomePageController.java
r763289e r044bd76 5 5 import org.springframework.web.bind.annotation.GetMapping; 6 6 import org.springframework.web.bind.annotation.PostMapping; 7 import org.springframework.web.bind.annotation.RestController;8 7 9 @ RestController(value = "/homepage")8 @Controller 10 9 public class HomePageController { 11 10 12 @GetMapping 11 @GetMapping(name = "/homepage") 13 12 public String getHomePageTemplate(Model model) { 14 13 return "homepage"; 15 14 } 16 15 17 @PostMapping 16 @PostMapping(name = "/homepage") 18 17 public String postHomePageTemplate(Model model) { 19 18 return "homepage"; -
src/main/resources/application.properties
r763289e r044bd76 3 3 spring.datasource.password=postgres 4 4 5 spring.sql.init.mode= always5 spring.sql.init.mode=never 6 6 7 spring.jpa.hibernate.ddl-auto= none7 spring.jpa.hibernate.ddl-auto=validate 8 8 spring.jpa.show-sql=true 9 9 spring.jpa.properties.hibernate.format_sql=true -
src/main/resources/data.sql
r763289e r044bd76 1 1 insert into stakeholder (id, created, email, first_name, last_name, modified, password, stakeholder_type, username) 2 values (nextval('hibernate_sequence'), current_timestamp, 'admin@schedlr.com', 'admin', 'admin', current_timestamp, ' admin','ADMIN', 'admin');2 values (nextval('hibernate_sequence'), current_timestamp, 'admin@schedlr.com', 'admin', 'admin', current_timestamp, '$2a$10$DJyjt.Vj/U8MEuYX1PXL9ukQSMwXHVdhre3POlTqpYzNxHB5gu/MW','ADMIN', 'admin'); 3 3 4 4 insert into stakeholder (id, created, email, first_name, last_name, modified, password, stakeholder_type, username) 5 values (nextval('hibernate_sequence'), current_timestamp, 'user1@schedlr.com', 'gjoko', 'kostadinov', current_timestamp, ' user','CUSTOMER', 'user');5 values (nextval('hibernate_sequence'), current_timestamp, 'user1@schedlr.com', 'gjoko', 'kostadinov', current_timestamp, '$2a$10$Zc28AcCpAgxB.e67UMF/2.FgchjH9QWB7z8nP0TdkrFneV4IHPXji','CUSTOMER', 'user'); -
src/main/resources/templates/homepage.html
r763289e r044bd76 1 1 <!DOCTYPE html> 2 <html lang="en">2 <html> 3 3 <head> 4 <meta charset="UTF-8"> 5 <title>Homepage</title> 4 <title>FullCalendar by Creative Tim </title> 5 6 <meta charset="utf-8"/> 7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 8 9 10 <link href='css/fullcalendar.css' rel='stylesheet'/> 11 <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/> 6 12 </head> 7 13 <body> 8 14 <div id='wrap'> 15 <div id='calendar'></div> 16 <div style='clear:both'></div> 17 </div> 18 <script src='js/jquery-1.10.2.js' type="text/javascript"></script> 19 <script src='js/jquery-ui.custom.min.js' type="text/javascript"></script> 20 <script src='js/fullcalendar.js' type="text/javascript"></script> 21 <script src="js/homepage.js" type="text/javascript"></script> 9 22 </body> 10 23 </html>
Note:
See TracChangeset
for help on using the changeset viewer.