Skip to content

Commit

Permalink
🍻 add lwm2m bootstrap server
Browse files Browse the repository at this point in the history
  • Loading branch information
sanshengshui committed May 25, 2021
1 parent 137876e commit 5fcf0ea
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
16 changes: 16 additions & 0 deletions IOT-Guide-Lwm2m/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@
<groupId>org.eclipse.leshan</groupId>
<artifactId>leshan-server-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package iot.technology.lwm2m.bootstrap;

import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

/**
* @author mushuwei
*/
@Slf4j
@Component
public class LwM2MTransportBootstrapServerConfiguration {

@PostConstruct
public void init() {

}

@PreDestroy
public void shutdown() {

}
}

0 comments on commit 5fcf0ea

Please sign in to comment.