- 하드 윈도우 복사
- 바코드 생성하기
- asp.net core Select
- 맥 오라클설치
- 파일업로드 유효성체크
- php 캐쉬제거
- 타임피커
- asp.net dropdownlist
- 강제이동
- SSD 복사
- XSS PHP
- javascript 유효성체크
- 바코드 스캔하기
- TempData
- Mac Oracle
- ASP.Net Core 404
- javascript 바코드스캔
- javascript 바코드 생성
- ViewData
- XSS방어
- ViewBag
- 말줄임표시
- javascript redirection
- asp.net Select
- django 엑셀불러오기
- jquery 바코드생성
- 하드 마이그레이션
- 404에러페이지
- jquery 바코드
- 파일업로드 체크
목록Java/Spring Boot (10)
웹개발자의 기지개
MyBatis 한글 번역된 매뉴얼 사이트이다. https://mybatis.org/mybatis-3/ko/index.html mybatis – 마이바티스 3 | 소개 마이바티스는 무엇인가? 마이바티스는 개발자가 지정한 SQL, 저장프로시저 그리고 몇가지 고급 매핑을 지원하는 퍼시스턴스 프레임워크이다. 마이바티스는 JDBC로 처리하는 상당부분의 코드와 mybatis.org Mapper XML https://mybatis.org/mybatis-3/ko/sqlmap-xml.html mybatis – 마이바티스 3 | 매퍼 XML 파일 Mapper XML 파일 마이바티스의 가장 큰 장점은 매핑구문이다. 이건 간혹 마법을 부리는 것처럼 보일 수 있다. SQL Map XML 파일은 상대적으로 간단하다. 더군다나 동..
Java SpringBoot , WebSocket 을 이용해서 채팅을 구현해보았다. Java 17SpringBoot 3.2.1Gradle, War [ build.gradle ]1234567891011121314151617181920212223242526272829303132333435plugins { id 'java' id 'war' id 'org.springframework.boot' version '3.2.1' id 'io.spring.dependency-management' version '1.1.4'} group = 'kr.co.alwaysweb'version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '17'} reposito..
인텔리제이에서 War 형태로 Spring Boot 간단히 배포해보자. 우측 Gradle 창에서 bootwar 클릭하면 /build/lib/war 파일생성 [ build.gradle ] 1 2 3 4 5 6 plugins { id 'java' id 'war' id 'org.springframework.boot' version '3.2.1' id 'io.spring.dependency-management' version '1.1.4' } Colored by Color Scripter cs 그리고 서버에 올리려면 아래 포스팅을 참고하도록 하자. https://jjeongil.tistory.com/2151 Spring Boot : Tomcat으로 프로젝트 배포 방법, 예제, 개념, 개요 이 섹션에서는 Tomca..
STS 상에서 Window > Preference 을 연다. File Types 안에서 새롭게 *.jsp 를 add 한다. 그리고, 그아래 Associated editors 항목에 Java Editor 를 add 하여 최종 Apply 한다.
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 @Controller public class SimpleBbsController { @PostMapping("/modify") public String modify(Model model, HttpServletRequest request, RedirectAttributes redirectAttributes) { dao.modifyDao(request.getParameter("write"), request.getParameter("title"), request.getParameter("content"), request.getParameter("id")); redirectAttribute..
1 2 3 4 5 6 7 java.sql.SQLException: The server time zone value '´ëÇѹα¹ Ç¥ÁؽÃ' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:127) ~[..
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useS..
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useS..