일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- java
- 오블완
- firestore
- 오류
- 자바
- 기업설명회
- 티스토리챌린지
- SQL
- 깃허브
- AJAX
- vscode
- SQLD
- chart.js
- github
- Eclipse
- Firebase
- 이클립스
- bootstrap
- 웹개발
- CSS
- myBatis
- restapi
- jQuery
- spring
- 스파르타코딩클럽
- 코딩
- error
- HTML
- JavaScript
- icon
- Today
- Total
목록jsp (2)
푸들푸들
staff 추가, staffList Controller@Slf4j@Controllerpublic class StaffController { @Autowired StaffMapper staffMapper; @Autowired StoreMapper storeMapper; @Autowired AddressMapper addressMapper; // 에서 넘어옴 @GetMapping("/on/addStaff") public String addStaff(Model model, @RequestParam(defaultValue="") String searchAddress) { // model(storeList) log.debug("searchAddress: ",searchAddress); List store..
package com.example.demo;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;@Controllerpublic class HelloController { @GetMapping("/hello") public String hello() { return "a"; }}∆ ∇ 같은 의미@WebServlet("/hello")public class FrontServlet extends HttpServlet{ void doget(request,response) { String s = this.hello(reqeust,response); RequestDisp..