- 바코드 스캔하기
- TempData
- jquery 바코드
- XSS방어
- SSD 복사
- 하드 마이그레이션
- javascript redirection
- ViewData
- 파일업로드 체크
- 맥 오라클설치
- django 엑셀불러오기
- asp.net core Select
- 말줄임표시
- 하드 윈도우 복사
- 강제이동
- 404에러페이지
- 바코드 생성하기
- jquery 바코드생성
- 타임피커
- asp.net Select
- 파일업로드 유효성체크
- ASP.Net Core 404
- XSS PHP
- javascript 바코드 생성
- asp.net dropdownlist
- php 캐쉬제거
- javascript 유효성체크
- Mac Oracle
- javascript 바코드스캔
- ViewBag
목록Java (33)
웹개발자의 기지개
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..
mysql DB 상에서 보통 root 로 아무생각없이 깔고, 코딩하면서 돌려볼때 java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES) 이런식으로 root 접근허가 불가 에러메세지를 만날수도 있는데 mysql 도 버전업이 되면서 root 비밀번호 규칙도 보다 엄격하게 강화시켜서, 만들어야 정상 동작이 된다. 대소문자, 숫자, 특수문자 다 넣어서 길게 다시 만들도록 하자. cmd 명령프롬프트 창에서 alter user 'root'@'localhost' IDENTIFIED WITH mysql_native_password by '변경할비번'; flush privileges; quit; [MySQL,MariaDB..
버전이 안맞아서 그렇다. gradle-6.8-bin.zip 으로 수정해보자.
Spring 4.3 이상이고, Spring 에서 빈에 대한 생성자가 오직 한개이고, 생성자의 파라미터 타입이 빈으로 등록되어 있다면 @Autowired 생략이 가능하다. 참고 : https://frogand.tistory.com/217 참고 : https://www.youtube.com/watch?v=FOHu9lWxPmU 참고 : https://jaeano.tistory.com/entry/Spring-Boot-Service-Component-Service-RequiredArgsConstructor
1 2 3 4 5 6 7 8 9 10 11 12 13 public class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public void introduce() { System.out.println("안녕하세요, 저는 " + name + "이고, " + age + "살입니다."); } } Colored by Color Scripter cs Person.class를 사용하여 Person 클래스의 Class 객체를 얻고, 리플렉션을 사용하여 클래스의 인스턴스를 생성하고 메서드를 호출해보자. 1 2 3 4 5 6 7 8 9 10 11 1..
우선 인텔리제이 상으로 기본 java 프로젝트로 새프로젝트를 만들었다. 그 다음 아래 그림과 같이 마우스 우클릭해서, Add Framework Support 창에서 Web 항목을 체크하여 /web 폴더 와 WEB-INF , web.xml 이 생성되도록 추가하도록 한다. 그리고 필자는 websocket 외부 jar 파일을 다운로드 받아서 아래와 같이 연동하였다. https://mvnrepository.com/artifact/javax.websocket/javax.websocket-api https://repo1.maven.org/maven2/javax/websocket/javax.websocket-api/1.1/ Central Repository: javax/websocket/javax.websocket-..