Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
83 views

I'm trying to add generated files to a C# project created by CMake. I find that while CMake can generate a C# project from existing files, it somehow treats generated files differently. They are found ...
Yosef Meller's user avatar
0 votes
0 answers
54 views

I’m writing a library that generates Java code at runtime, and so far it’s producing good results. The problem: some legacy software (read: "adopting polymorphism now is kinda impossible") ...
Vento's user avatar
  • 91
0 votes
0 answers
196 views

I'm using the Function Module SEO_CLASS_CREATE_COMPLETE to generate classes, but the problem is, that it doesn't do Pretty-print on the source code. Q: Is there a way to make the FM do Pretty-print? ...
Poul Bundgaard's user avatar
0 votes
1 answer
474 views

I'm diving into NET8, minimal API and clean architecture. First of all: This works (Swagger UI and postman) app.MapPost("/user/login", async (HttpContext httpContext, [FromBody] LoginDto ...
Gottfried Lesigang's user avatar
0 votes
0 answers
36 views

I need to generate a pdf of the packing list with the data of the notes and the volume of the box, and I want it to be added to a new page when it exceeds 40 pages, I'm using pdfKit I'm using this ...
Wilton Santos's user avatar
2 votes
2 answers
1k views

When I open a querydsl JPA project with vscode, vscode has many cannot be resolved errors: The import com.**.QRoutePayload cannot be resolved When I open it with IDEA, it's all right. Why do I get ...
tmaolin's user avatar
  • 21
1 vote
0 answers
697 views

I'm a WPF developer and have to perform some task in WinForms (I'm a total newbie of WinForms). Unlike in WPF, I've noticed that the InitializeComponent method in WinForms is generated by the Windows ...
Cod Fish's user avatar
  • 947
2 votes
1 answer
3k views

I am trying to have protoc-generated server interface and client implementation in separate packages The header part of my .proto files is the following: syntax = "proto3"; option ...
Alexander's user avatar
  • 143
5 votes
1 answer
7k views

I am working on generation of model classes by Open API Maven plugin which I need to use in my business logic. The api is generated by other team and given to us. It has lot of model classes ...
Manushi's user avatar
  • 769
11 votes
5 answers
6k views

I have some generated code that has a bunch of compiler warnings. I want to disable them in the generated file, but keep those warnings in the rest of the project so they can be fixed. I'm using ...
computercarguy's user avatar
1 vote
0 answers
480 views

Trying to relocate generated sources for JMH build under kotlin gradle with melix/jmh-gradle-plugin From : .../projectroot/SUBPRJ_A/BUILD/jmh-generated-sources/... To : .../projectroot/BUILD/...
JDMcMillian's user avatar
1 vote
2 answers
895 views

I need to generate a unique code with 5 lengths with the given number. In other words, I need to encode natural number to 5 length unique code I wanna give fixed-length rememberable code to the ...
Aliasghar Ahmadpour's user avatar
0 votes
0 answers
112 views

I have two XSD files and I need to combine them and generate a .cs file (C# objects). One XSD is the one we already use (let's call it first.xsd), and we still need the C# objects that are generated ...
A. Gh's user avatar
  • 721
0 votes
1 answer
506 views

I've been trying to send a file (image) using Java and Springboot. Recently I've discovered that there is a code section in the Postman which can generate Java code, and thought it can be used for ...
slomil's user avatar
  • 311
1 vote
0 answers
433 views

I'm currently developing an Angular + Spring Boot application. I manage both projects with maven. For Maven I have a plugin that generates DTOs for Java AND TypeScript/Angular. Dealing with the ...
kalidali's user avatar
  • 286
1 vote
1 answer
65 views

Before you dismiss this post as using LibreOffice documents THE WRONG WAY, let me explain what I'm trying to achieve. I am generating programatically ODT documents, which is mostly no big deal. I have ...
helcim's user avatar
  • 837
4 votes
1 answer
2k views

I'm using Dagger in a Java library module in an Android Studio project and here's what my build.gradle for the module looks like: apply plugin: 'java-library' dependencies { implementation ...
Harry's user avatar
  • 1,181
4 votes
0 answers
2k views

I would like to have a gradle project that generates no compiler warnings on any code that I write. I would also like to use the Immutables library to generate some of my classes. At the moment I have ...
simonsays's user avatar
  • 438
0 votes
1 answer
2k views

I want to create a Spring Boot fat JAR containing classes from target/generated-sources. After that I want to add this JAR as a dependency in another app and use a class from target/generated-sources ...
Yuan's user avatar
  • 1
1 vote
0 answers
7k views

Given some imported classes that I cannot affect, import com.foo.A; import com.foo.B; import com.foo.C; I want to generate an interface of methods shared by A, B, and C, e.g. public interface Common ...
Andrew Cheong's user avatar
1 vote
0 answers
557 views

I am currently developing a spring boot app where I have resources being generated by JAXB and I want to repackage a jar with those files. I have tried multiple approaches with the includes tag in ...
Danilo Silva's user avatar
2 votes
1 answer
517 views

How do I refer to files generated by a sourceGenerators sbt task? I know that the source file is deposited to target/scala-<version>/src_managed/path/to/File.Scala but I don't know how to ...
franklin's user avatar
  • 1,819
0 votes
1 answer
315 views

I have several WSDL files that I"m using to generate client code to talk to a remote service using SOAP. The generated code includes a line that looks like this: public class AddProductService ...
Tony Giaccone's user avatar
2 votes
2 answers
853 views

I am writing a class implementing an interface that exposes a setSelected method. This class will have a selected property: private class Foo : IFoo { var selected = false override ...
PLNech's user avatar
  • 3,187
1 vote
0 answers
55 views

I am writing a maven plugin that generates source code. I have created my plugin project using the maven-archetype-plugin archetype. The maven-archetype-plugin archetype creates a project-to-test ...
spierepf's user avatar
  • 2,962

1
2 3 4 5