CAS Overlay Template’s copyCasConfiguration command

After long research, you decided to use Apereo CAS as a Single Sign-on solution. It will tell you when you go to the source code on Github.

So you change your direction to the CAS overlay template repository. This repository is a minimal version of CAS and provides great convenience in development and deployment (https://github.com/apereo/cas-overlay-template).

With every change you make to the project, you run the following commands in order as specified in the README.

The last two commands are commands that seem to do what they do. The “war” command is responsible for packaging the project and making it artifact with the extension .war (You can see the .war file under the build/libs directory.). The “run” command allows to run the .war package.

But what exactly is the function of the “copyCasConfiguration” command?

After running this command, you will see that the files of the project under the /etc/cas directory are copied to the root directory of the computer. If this is not done, most things will not work in CAS file operations.

Why?

Because after the jar/war is created, the url/uri of the files is as follows.

In most of the methods used by CAS for file operations, it is checked whether the file exists or not, and it is checked that the file protocol starts with file: in this process. For example,

CAS uses the above method for file operations. While waiting for “file” as a protocol, “jar:file:” is encountered and a file error is thrown. Therefore, the expected file operations do not occur.

Related questions;

Therefore CAS does not include files in artifacts such as .jar/.war. It always copies under the root directory and performs file operations over the root directory.

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store