docker启动redis容器
docker run -d --name redis-container -p 6379 :6379 redis:latest
创建java 应用
dockerfile
FROM openjdk:17
RUN mkdir -p /data/etax/ms-app
WORKDIR /data/etax/ms-appEXPOSE 10133
COPY ./target/fe-msv-ntp-ms3-1.0.0-SNAPSHOT.jar /data/etax/ms-app/app.jar
ENTRYPOINT [ "java" ,"-jar" ,"app.jar" ]
构建命令
docker build -t test-docker:v3 ./
docker run -d --name test-docker-app -p 10133 :10133 test-docker:v3
SpringBoot 项目搭建
启动类
import org. springframework. boot. SpringApplication ;
import org. springframework. boot. autoconfigure. SpringBootApplication ; @SpringBootApplication
public class AppApplication { public static void main ( String [ ] args) { SpringApplication . run ( AppApplication . class , args) ; }
}
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
< project xmlns = " http://maven.apache.org/POM/4.0.0" xmlns: xsi= " http://www.w3.org/2001/XMLSchema-instance" xsi: schemaLocation= " http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > < parent> < groupId> org.springframework.boot</ groupId> < artifactId> spring-boot-dependencies</ artifactId> < version> 3.1.0</ version> </ parent> < modelVersion> 4.0.0</ modelVersion> < artifactId> fe-msv-ntp-ms3</ artifactId> < version> 1.0.0-SNAPSHOT</ version> < properties> < java.version> 17</ java.version> < maven.compiler.source> ${java.version}</ maven.compiler.source> < maven.compiler.target> ${java.version}</ maven.compiler.target> < start-class> ird.ntp.fe.msv.AppApplication</ start-class> < maven-compiler-plugin.version> 3.10.1</ maven-compiler-plugin.version> < maven-spring-boot-plugin.version> 3.0.4</ maven-spring-boot-plugin.version> < maven-surefire-plugin.version> 3.0.0-M5</ maven-surefire-plugin.version> < maven-compiler-plugin.version> 3.8.1</ maven-compiler-plugin.version> </ properties> < dependencies> < dependency> < groupId> org.projectlombok</ groupId> < artifactId> lombok</ artifactId> </ dependency> < dependency> < groupId> org.springframework.boot</ groupId> < artifactId> spring-boot-starter</ artifactId> </ dependency> < dependency> < groupId> org.springframework.boot</ groupId> < artifactId> spring-boot-starter-web</ artifactId> </ dependency> < dependency> < groupId> org.springframework.boot</ groupId> < artifactId> spring-boot-starter-data-redis</ artifactId> </ dependency> </ dependencies> < build> < plugins> < plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-surefire-plugin</ artifactId> < version> ${maven-surefire-plugin.version}</ version> </ plugin> < plugin> < groupId> org.springframework.boot</ groupId> < artifactId> spring-boot-maven-plugin</ artifactId> < version> ${maven-spring-boot-plugin.version}</ version> < configuration> < mainClass> org.example.AppApplication</ mainClass> </ configuration> < executions> < execution> < goals> < goal> repackage</ goal> </ goals> </ execution> </ executions> </ plugin> </ plugins> < resources> < resource> < directory> src/main/resources</ directory> < includes> < include> **/*</ include> </ includes> < filtering> true</ filtering> </ resource> </ resources> </ build> </ project>
yaml
spring : application : name : fe- msv- ntp- ms3- app
redis : host : 10.130.6.126port : 6379
server : port : 10133
其他测试类
import org. springframework. beans. factory. annotation. Value ;
import org. springframework. context. annotation. Bean ;
import org. springframework. context. annotation. Configuration ;
import org. springframework. data. redis. connection. RedisConnectionFactory ;
import org. springframework. data. redis. connection. lettuce. LettuceConnectionFactory ;
import org. springframework. data. redis. core. RedisTemplate ; @Configuration
public class RedisConfig { @Value ( "${spring.redis.host}" ) String host; @Value ( "${spring.redis.port}" ) String port; @Bean public RedisConnectionFactory redisConnectionFactory ( ) { System . out. println ( "创建 Redis 连接工厂" ) ; LettuceConnectionFactory factory = new LettuceConnectionFactory ( ) ; factory. setHostName ( host) ; factory. setPort ( Integer . parseInt ( port) ) ; return factory; } @Bean public RedisTemplate < String , Object > redisTemplate ( RedisConnectionFactory connectionFactory) { RedisTemplate < String , Object > template = new RedisTemplate < > ( ) ; template. setConnectionFactory ( connectionFactory) ; return template; } } import org. springframework. beans. factory. annotation. Autowired ;
import org. springframework. data. redis. core. RedisTemplate ;
import org. springframework. web. bind. annotation. GetMapping ;
import org. springframework. web. bind. annotation. RequestMapping ;
import org. springframework. web. bind. annotation. RestController ; @RestController
@RequestMapping ( "/test" )
public class TestController { @Autowired RedisTemplate < String , Object > redisTemplate; @GetMapping ( "/success" ) public String success ( ) { return "success" ; } @GetMapping ( "/setValue" ) public void setValue ( String key, String value) { redisTemplate. opsForValue ( ) . set ( key, value) ; System . out. println ( "key=" + key + "value=" + value) ; } @GetMapping ( "/getValue" ) public String getValue ( String key) { return ( String ) redisTemplate. opsForValue ( ) . get ( key) ; } }