'전체 글'에 해당되는 글 1011

  1. 2023.05.20 준비
  2. 2021.07.06 노트북 웹캠이 동작 안함
  3. 2021.03.08 Armeria
  4. 2021.03.07 test
  5. 2021.01.30 HornetQ를 찾아서, ActiveMQ-Artemis

준비

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

노트북 웹캠이 동작 안함

장치관리자에서 안보임. 카메라, 이미징 장치, 변경사항 검색해도 안나옴.

여기서 안보인다는 거는 드라이버 잘못 설치? 그러면 물음표라도 나와야 하는데...

 

윈도우 업데이트 했음.

설정 - 개인 정보 - 액세스 허용 -> 안됨

 

카메라 앱 실행, 카메라를 찾을 수 없습니다.

 

제조사 드라이버 업데이트?

삼성 이놈들아, 드라이버 하나 찾기가 왜이리 힘드냐, 레노버보다 못하다.

 

장치관리자에서 카메라가 보이지 않는 것은 장치가 활성화되지 않아서 일수도..역쉬

삼성노트북, 보안 활성화? 머 그런 기능이 있었다.

활성화하니 장치관리자에서 카메라가 보인다.

 

코로나 시대, 아빠는 컴퓨터 수리 실력이 일취월장하고 있다. 

 

 

Armeria

Armeria: 어디서나 잘 어울리는 마이크로서비스 프레임워크

Java와 Armeria로 기본적인 웹 서버 만들기

 

Dependency 추가 
<Group Name>:<Artifact Id>:<Version>
compile "com.linecorp.armeria:armeria:0.68.2"

 

public class ArmeriaServer {

	public static void main(String[] args) {
		
		new ServerBuilder()
			.http(7000)
			.service("/hello", (ctx, res) -> HttpResponse.of(
				HttpStatus.OK, MediaType.HTML_UTF_8
				, "<h1>Hello</h1>"
			)).build().start();
	}
}

 

18:21:32.686 [main] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.machineId: a4:34:d9:ff:fe:ca:a7:dd (auto-detected)
18:21:32.742 [armeria-boss-http-*:7000] INFO com.linecorp.armeria.server.Server - Serving HTTP at /[0:0:0:0:0:0:0:0]:7000 - http://127.0.0.1:7000/

 

 

 

test

hi

asdff
gfdry

HornetQ를 찾아서, ActiveMQ-Artemis

STS - Spring Starter Project 에서 HornetQ 의존성이 안보임.
Spring Boot JMS를 HornetQ 로 임베딩해서 하고 싶음.

스프링 부트 1.5에서 HornetQ와 벨로시티 Velocity서포트가 제거되었다고 함(deprecated)
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.5-Release-Notes#deprecations-from-spring-boot-14

HornetQ가 ActiveMQ-Artemis로 옮긴(?) 글을 봤음.
https://hornetq.jboss.org/
HornetQ has been donated to the Apache ActiveMQ community!
릴리즈도 2.4.0.Final, 2013/12/16 이 마지막

Artemis가 릴리즈 되었음.
HornetQ Apache donation and Apache Artemis 1.0.0 release
Monday, 1 June 2015

Artemis는 ActiveMQ와 무슨 관계냐... 

Apache ActiveMQ에 소개된 내용, Artemis가 향후 ActiveMQ 6로 된다고 함.
There are currently two "flavors" of ActiveMQ available - the "classic" 5.x broker and the "next generation" Artemis broker. Once Artemis reaches a sufficient level of feature parity with the 5.x code-base it will become ActiveMQ 6. Initial migration documentation is available.

어쨌든 Artemis를 사용하면 될 거 같다.
STS에서 Artemis 의존성이 보임.

끝~