From 391cb62d29159e1bad56c96be06e4cf527a90746 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 29 Oct 2015 13:22:42 +0300 Subject: load config from WEB-INF, example config --- src/main/java/com/juick/http/www/Main.java | 2 +- src/main/webapp/WEB-INF/juick.conf.example | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/main/webapp/WEB-INF/juick.conf.example (limited to 'src/main') diff --git a/src/main/java/com/juick/http/www/Main.java b/src/main/java/com/juick/http/www/Main.java index 6504a0e4..ced7fb98 100644 --- a/src/main/java/com/juick/http/www/Main.java +++ b/src/main/java/com/juick/http/www/Main.java @@ -69,7 +69,7 @@ public class Main extends HttpServlet implements Stream.StreamListener { super.init(); try { Properties conf = new Properties(); - conf.load(new FileInputStream("/etc/juick/www.conf")); + conf.load(getServletContext().getResourceAsStream("WEB-INF/juick.conf")); Class.forName("com.mysql.jdbc.Driver"); sql = DriverManager.getConnection("jdbc:mysql://localhost/juick?autoReconnect=true&user=" + conf.getProperty("mysql_username", "") + "&password=" + conf.getProperty("mysql_password", "")); diff --git a/src/main/webapp/WEB-INF/juick.conf.example b/src/main/webapp/WEB-INF/juick.conf.example new file mode 100644 index 00000000..93e27434 --- /dev/null +++ b/src/main/webapp/WEB-INF/juick.conf.example @@ -0,0 +1,3 @@ +mysql_username=username +xmpp_password=secret +sape_user=usertoken -- cgit v1.2.3