spring cloud 打包为war包

war
 
      org.springframework.boot
      spring-boot-starter-tomcat
      provided
 

将tomcat配置文件的端口号改成和微服务端口号一致,微服务打成的jar包改为ROOT.jar

启动文件修改:

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@EnableCircuitBreaker
@EnableFeignClients
@ComponentScan("xxx.xxx.**")
public class Application extends SpringBootServletInitializer implements CommandLineRunner{
	private Logger logger = LoggerFactory.getLogger(Application.class);

	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}

	
    @Override
    public void run(String... args) throws Exception {
        logger.info("启动完成!");
    }
    
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(Application.class);
    }
}
@Configuration
public class WebConfiguration extends WebMvcConfigurerAdapter {
	@Bean
	public MessageSource messageSource() {
		ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
		messageSource.setBasename("static/message/messages");
		messageSource.setDefaultEncoding("UTF-8");
		return messageSource;
	}
}

 

你可能感兴趣的:(个人心得,微服务)