일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- error
- 웹개발
- 이클립스
- CSS
- 오류
- 티스토리챌린지
- JavaScript
- 기업설명회
- 코딩
- Firebase
- bootstrap
- chart.js
- 스파르타코딩클럽
- icon
- Eclipse
- java
- 깃허브
- spring
- HTML
- myBatis
- jQuery
- vscode
- github
- 오블완
- AJAX
- SQL
- 자바
- SQLD
- restapi
- firestore
- Today
- Total
목록myBatis (6)
푸들푸들
application propertiesspring.servlet.multipart.enabled=truespring.servlet.multipart.max-file-size=10MBspring.servlet.multipart.max-request-size=100MB파일 하나에 최대 용량 10MB여러개 최대 용량 100MB addActor 배우 추가ActorMapper.xml select LAST_INSERT_ID() INSERT INTO actor ( first_name, last_name ) VALUES( #{firstName}, #{lastName} ) order="AFTER" : 나중에 실행insert 문 먼저 실행 -> actorId -> selectKeyselec..
StaffMapper.xml UPDATE staff active = #{active} WHERE staff_id = ${staffId} myBatis는 test에 java 표현식 그대로 적어도됨 active = #{active} --> active값이 들어올때만 값을 수정(update)할 수 있는 동적 코드 StaffController.java@Slf4j@Controllerpublic class StaffController { @Autowired StaffMapper staffMapper; @Autowired StoreMapper storeMapper; @Autowired AddressMapp..
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..
https://spring.io/tools Spring | Tools spring.ioWindows 버전 다운로드- 파일 압축 해제 (7zip) STS 플러그인 추가1) JAVA web 플러그인 Help - Eclipse Market Install -> confirm - agree - Finish 2) MyBatis 플러그인Install - agreeSelect All - Trust -다음 페이지도 반복 - Restart 3) JavaScript 자동완성 플러그인https://github.com/angelozerr/tern.java/releases Releases · angelozerr/tern.javaUse tern.js in Java context. Contribute to angelozerr/..
InterceptorOnInterceptor.java@Slf4j@Component // new OnInterceptor -> bean으로 등록해줌public class OnInterceptor implements HandlerInterceptor{ // 특정 컨트롤러 실행전에 request, response를 가채로어 먼저 실행됨 @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { log.debug(request.getRequestURL().toString() +"요청 Interceptor"); // ..
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..