forked from JavaOPs/topjava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
24 lines (20 loc) · 745 Bytes
/
Copy pathMain.java
File metadata and controls
24 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ru.javawebinar.topjava;
/**
* User: gkislin
* Date: 05.08.2015
*
* @link http://caloriesmng.herokuapp.com/
* @link https://github.com/JavaOPs/topjava
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello Topjava Enterprise!");
// 2015-05-31T20:00
// LocalDate startDate = LocalDate.parse(request.getParameter("startDate"));
// LocalDate endDate = LocalDate.parse(null);
// LocalTime startTime = LocalTime.parse(request.getParameter("startTime"));
// LocalTime endTime = LocalTime.parse(request.getParameter("endTime"));
// LocalDateTime start = startDate.atTime(startTime);
// LocalDateTime end = endDate.atTime(endTime);
}
}