main
parent
ea0e962507
commit
c85523700e
|
|
@ -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"]
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue