maven netty spring项目打包jar报错解决办法!

最近帮同事搭建一个简单的服务器(netty集成spring通信),考虑到部署简单性,于是就考虑使用jar,简单粗暴!idea下面建立好项目框架并简单做了一个测试,通过ok!可是打包(我用的idea打包而不是maven插件)成为jar时,遇到好几个问题,折腾了一晚上,第二天上班的时候自己慢慢测试下终于解决了!



这是我的测试目录结构:

maven netty spring项目打包jar报错解决办法!_第1张图片

主函数(错的情况,但是在idea下都能正常运行,jar报错):


第一种

public class Main
{
    public static void main( String[] args )
    {
        ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
        System.out.print((context==null)+"加载spring完毕………………");
        MyServer server=context.getBean(MyServer.class);
        try {
            server.bind(8767);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

第二种

public class Main
{
    public static void main( String[] args )
    {
        ApplicationContext context=new ClassPathXmlApplicationContext("classpath*:applicationContext.xml");
        System.out.print((context==null)+"加载spring完毕………………");
        MyServer server=context.getBean(MyServer.class);
        try {
            server.bind(8767);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
出现异常:

1.读取不到xml配置文件;

2.貌似读取到了xml文件,异常org.springframework.beans.factory.NoSuchBeanDefinitionException,实际还是xml文件并没有被正确读取解析;

3.包冲突;

解决办法:

1.pom.xml文件配置,使用maven-shade-plugin插件进行打包!因为idea本身打包回有包里面冲突问题,shade能解决这一问题!

2.具体pom配置如下


      
        org.apache.maven.plugins
        maven-shade-plugin
        1.7

        
          
            package
            
              shade
            
            
              my-spring-app
              true
              jar-with-dependencies
              
                
                  com.gateway.Main
                
                
                  META-INF/spring.handlers
                
                
                  META-INF/spring.schemas
                
                
                  META-INF/spring.tooling
                
              

            
          
        
      
    

3.修改主函数,主要加的 “/”杠

public class Main
{
    public static void main( String[] args )
    {
        ApplicationContext context=new ClassPathXmlApplicationContext("/applicationContext.xml");
        System.out.print((context==null)+"加载spring完毕………………");
        MyServer server=context.getBean(MyServer.class);
        try {
            server.bind(8767);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

4.修改完毕先在idea运行主函数测试一次,没问题后,停掉主函数,操作步骤如下点击idea右手侧边栏的maven:

maven netty spring项目打包jar报错解决办法!_第2张图片

②再运行compile,运行完毕在运行package打包完成;

cmd命令界面个人测试ok!maven netty spring项目打包jar报错解决办法!_第3张图片

希望能帮到需要的朋友!

你可能感兴趣的:(java)