manueltauber 2023-10-24 12:52:11 +02:00
parent ea0e962507
commit c85523700e
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,9 @@
FROM tomcat:latest
COPY ./backend/target/backend.war /usr/local/tomcat/webapps
EXPOSE 8080
EXPOSE 50000
CMD ["/usr/local/tomcat/bin/catalina.sh", "run"]

View File

@ -13,7 +13,7 @@ import com.bmc.thirdparty.org.springframework.beans.factory.annotation.Autowired
*/ */
@Component @Component
public class RssoInterceptor implements HandlerInterceptor { public class RssoInterceptor implements HandlerInterceptor {
private final static boolean DEBUG = false; private final static boolean DEBUG = true;
private final Rsso rsso; private final Rsso rsso;
@Autowired @Autowired