[1] Spring Boot 웹프로젝트 만들기
2019. 9. 28. 12:57
스프링
1. 마우스 오른쪽 마우스 - New - Spring Starter Project 2. 해당 화면처럼 setting 3. Spring Web을 체크 4. application.properties에 해당 내용 작성 spring.mvc.view.prefix=/WEB-INF/views/ spring.mvc.view.suffix=.jsp 5. main/webapp main/webapp/WEB-INF main/webapp/WEB-INF/views 폴더 생성 6. 패키지 만들기 7. 방금 만든 패키지에 MainController.java 만들기 8. MainController.java 생성 import org.springframework.stereotype.Controller; import org.springfra..
[Spring] 파일업로드
2019. 7. 19. 14:04
스프링
//controller /* * 업로드 */ /** * File upload. * * @param req the req * @param res the res * @param uploadFile the upload file * @return the response entity */ @PostMapping(value={Url.COMMON.FILE_UPLOAD}) @ResponseBody public ResponseEntity fileUpload(HttpServletRequest req, HttpServletResponse res, MultipartFile uploadFile) { Map resultMap = new HashMap(); FileInfo _file; try { _file = fileService..
[Spring] 저장된 파일 이미지 보여주기
2019. 7. 19. 14:00
스프링
Controller.java //Controller //첨부파일 image 보여주는 api @RequestMapping(value="/api/img/print/{idx}" , method = {RequestMethod.GET}) public ModelAndView getPublicImage(@PathVariable("idx") String idx, HttpServletRequest req, HttpServletResponse res) { FileInputStream fis = null; File file = fileService.getFileObject(idx); ModelAndView mav = new ModelAndView(); try { mav.setView(new AttachDownloadView..
[Javascript] enzview
2019. 6. 20. 16:47
자바스크립트
https://www.jqueryscript.net/other/Image-PDF-Viewer-EZView.html
[JAVASCRIPT] 한글 입력 안되게하기
2019. 6. 14. 15:51
자바스크립트
[JAVASCRIPT] input 숫자만 입력 가능하게
2019. 6. 10. 09:37
자바스크립트
tiles-single jsp 페이지 ajax
2019. 5. 28. 09:36
스프링
tiles-single.xml ajax $.ajax({ type : 'GET', url : "/cust/find-corp-list-data", data : params, dataType : 'html', contentType : "application/json", success : function(data){ console.log(data); $(".tbls1").remove(); $(".paginate").remove(); $("#searchDiv").after(data); //전체 체크박스 클릭 $(".allBtn").click(function(){ if($(".allBtn").prop("checked")){ $(".chk").prop("checked", true); } else{ $(".chk")...
[JAVASCRIPT] 로딩바
2019. 5. 23. 18:48
자바스크립트
[Spring] lombok 설치
2019. 5. 20. 19:12
스프링
https://projectlombok.org/download Download projectlombok.org 설치후 install / update sts.exe path 프로젝트 clean
[Linux] apache mysql 자동실행 및 상태확인
2019. 5. 16. 08:37
DevOps
//부팅시 자동실행 // Apache # systemctl enable httpd // MySQL # systemctl enable mysqld //상태확인 // Apache # systemctl status httpd // MySQL # systemctl status mysqld