1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 01:02:55 +00:00

ResourceMapping nur für Ressourcen mit Endung *.js

Dadurch wird der mögliche Download von *.class-Dateien verhindert, die im gleichen Verzeichnis
im Classpath liegen können.
This commit is contained in:
2023-04-05 10:57:01 +02:00
parent abb54090aa
commit 367f46ccea

View File

@ -25,6 +25,6 @@
<context:component-scan base-package="de.ukw.ccc.onkostar.atccodes" />
<context:component-scan base-package="DNPM.config" />
<mvc:resources mapping="/app/lib/umr/**" location="classpath:/app/lib/umr/" />
<mvc:resources mapping="/app/plugins/atccodes/**" location="classpath:/de/ukw/ccc/onkostar/atccodes/" />
<mvc:resources mapping="/app/lib/umr/**/*.js" location="classpath:/app/lib/umr/" />
<mvc:resources mapping="/app/plugins/atccodes/**/*.js" location="classpath:/de/ukw/ccc/onkostar/atccodes/" />
</beans>