일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Quartz
- lsof
- web.xml
- resource
- tomcat
- Mac
- ssh
- JavaScript
- find
- import
- Windows
- xargs
- port
- 단축키
- context
- Source
- GIT
- 줄바꿈 문자
- grep
- bash
- Windows 10
- netsh
- Eclipse
- maVen
- VirtualBox
- profile
- vscode
- 네트워크
- IntelliJ
- plugin
- Today
- Total
목록전체 글 (1786)
develog

에러 메시지Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below and hit Enter to allow pasting. 콘솔 입력창에 'allow pasting' 을 입력하고 엔터를 누른다다시 붙여넣기를 한다
-- 현재 설정 확인SELECT Host, User FROM user WHERE User = 'root';-- host를 %로 변경 (모든 호스트에서 접속 허용)UPDATE user SET Host='%' WHERE User='root';GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '비밀번호';FLUSH PRIVILEGES;
@SpringBootTest@ActiveProfiles("my") // application_my.yml 적용@TestPropertySource(locations = "classpath:application_my.yml")public class MyTest { // 테스트 코드}

Reset Frame Throw Exception Force Return Set Value

- src/main/resources/application-my.yml 파일을 만든다- Program arguments 에 --spring.config.name=application-my 를 지정한다