BIRT in spring boot app

后端 未结 2 1724
清歌不尽
清歌不尽 2021-01-30 18:25

I need to create a report capability(function) in an existing spring boot web application. The suggestion was to use BIRT, which I could integrate with the spring boot web app.

2条回答
  •  迷失自我
    2021-01-30 19:01

    Regarding @Kent Johnson 's answer. I didn't manage to configure the project with gradle, but I managed to build it with maven. Below is the pom.xml

        
            
    4.0.0
    
    birt-runner
    com.example.simple-birt-runner
    1.0-SNAPSHOT
    jar
    
    
        org.springframework.boot
        spring-boot-starter-parent
        1.4.4.RELEASE
         
    
    
    
        UTF-8
        UTF-8
        1.8
    
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
    
        
            org.springframework.boot
            spring-boot-starter-tomcat
            
        
    
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    
        
        
            org.springframework
            spring-web
        
    
        
        
            org.eclipse.birt.runtime
            org.eclipse.birt.runtime
            4.2.0
        
    
        
        
            org.springframework
            spring-core
        
    
        
        
            com.fasterxml.jackson.core
            jackson-databind
        
    
    
    
    
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    
    

提交回复
热议问题