You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cloned snippet of the code from here git clone https://github.com/spring-guides/gs-authenticating-ldap.git
My build.gradle:
plugins {
id 'org.springframework.boot' version '3.3.0'
id 'java'
id 'eclipse'
}
eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
}
}
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
// tag::security[]
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.ldap:spring-ldap-core")
implementation("org.springframework.security:spring-security-ldap")
implementation("com.unboundid:unboundid-ldapsdk")
// end::security[]
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation("org.springframework.security:spring-security-test")
}
test {
useJUnitPlatform()
}
In /home/user/.gradle/caches/modules-2/files-2.1 I see .jars for spring, yet I am not able to gd and or gI on e.g. the function withDefaults from the code:
[START][2024-12-16 23:28:43] LSP logging initiated
[WARN][2024-12-16 23:28:46] ...lsp/handlers.lua:135 "The language server jdtls triggers a registerCapability handler for workspace/didChangeWorkspaceFolders despite dynamicRegistration set to false. Report upstream, this warning is harmless"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello, my lua config:
I cloned snippet of the code from here
git clone https://github.com/spring-guides/gs-authenticating-ldap.git
My
build.gradle
:In
/home/user/.gradle/caches/modules-2/files-2.1
I see .jars for spring, yet I am not able togd
and orgI
on e.g. the functionwithDefaults
from the code:Lua Logs:
What I do wrong?
Beta Was this translation helpful? Give feedback.
All reactions