-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to pass the switch --skip-kotlin-format with jhipster 7.0.1 #279
Comments
It looks like the generator falls back to main JHipster generator, can you try uninstalling the |
Same.
|
I tried the latest release for the first time today. I tried using the following to generate a microservices architecture.
I did see the following during the generation process.
I do have JHipster 7.0.1 installed. If I cd into the
The code in this file is: package com.okta.developer.blog.repository
import com.okta.developer.blog.domain.Authority
import org.springframework.data.neo4j.repository.ReactiveNeo4jRepository
import reactor.core.publisher.Flux
/**
* Spring Data Neo4j repository for the {@link Authority} entity.
*/
interface AuthorityRepository : ReactiveNeo4jRepository<Authority, String> {
<Authority> findAll(): Flux
} For
|
If I try to log in to the gateway app, it fails too:
I just tested 7.0.1 with my reactive microservices post and everything works. I'm updating the post now and was hoping to change the Kotlin section to reference the KHipster 1.12.0 release. Maybe that's not a good idea? |
The import com.okta.developer.store.security.extractAuthorityFromClaims To fix interface AuthorityRepository : ReactiveNeo4jRepository<Authority, String> {
override fun findAll(): Flux<Authority>
} Then, I got a bunch of additional errors:
The repeatable are about code that looks like: @Relationship("HAS_TAG")
@JsonIgnoreProperties(
value = [
"posts"
],
allowSetters = true
)
@Relationship("HAS_TAG")
var tags: MutableSet<Tag>? = mutableSetOf(), |
I added a $300 bug bounty in hopes of getting reactive microservices fixed so |
Fixed all the generator issues, so the code now compiles and run. But there is one more issue, after authenticating, when we try to create an User, the application throws the following error
It looks like a |
Yes. The main generator works. I haven't seen this issue there. |
Found the issue. Fixed it 👍🏽 It should be working now. I will cut a new release today |
Overview of the issue
khipster crashed with --skip-kotlin-format switch
Motivation for or Use Case
Reproduce the error
Related issues
Link to PR (if any)
KHipster Version(s): 1.12.0
The text was updated successfully, but these errors were encountered: