本文整理汇总了Java中net.sourceforge.subsonic.service.SettingsService.getSubsonicHome方法的典型用法代码示例。如果您正苦于以下问题:Java SettingsService.getSubsonicHome方法的具体用法?Java SettingsService.getSubsonicHome怎么用?Java SettingsService.getSubsonicHome使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.sourceforge.subsonic.service.SettingsService
的用法示例。
在下文中一共展示了SettingsService.getSubsonicHome方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getImageCacheDirectory
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
private synchronized File getImageCacheDirectory(int size) {
File dir = new File(SettingsService.getSubsonicHome(), "thumbs");
dir = new File(dir, String.valueOf(size));
if (!dir.exists()) {
if (dir.mkdirs()) {
LOG.info("Created thumbnail cache " + dir);
} else {
LOG.error("Failed to create thumbnail cache " + dir);
}
}
return dir;
}
示例2: createDataSource
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
private DataSource createDataSource() {
File subsonicHome = SettingsService.getSubsonicHome();
DriverManagerDataSource ds = new DriverManagerDataSource();
ds.setDriverClassName("org.hsqldb.jdbcDriver");
ds.setUrl("jdbc:hsqldb:file:" + subsonicHome.getPath() + "/db/subsonic");
ds.setUsername("sa");
ds.setPassword("");
return ds;
}
示例3: afterPropertiesSet
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
public void afterPropertiesSet() throws Exception {
Configuration configuration = ConfigurationFactory.parseConfiguration();
// Override configuration to make sure cache is stored in Subsonic home dir.
File cacheDir = new File(SettingsService.getSubsonicHome(), "cache");
configuration.getDiskStoreConfiguration().setPath(cacheDir.getPath());
cacheManager = CacheManager.create(configuration);
}
示例4: doFilter
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)
throws IOException, ServletException {
// Already verified?
if (subsonicHomeVerified) {
chain.doFilter(req, res);
return;
}
File home = SettingsService.getSubsonicHome();
if (!directoryExists(home)) {
error(res, "<p>The directory <b>" + home + "</b> does not exist. Please create it and make it writable, " +
"then restart the servlet container.</p>" +
"<p>(You can override the directory location by specifying -Dsubsonic.home=... when " +
"starting the servlet container.)</p>");
} else if (!directoryWritable(home)) {
error(res, "<p>The directory <b>" + home + "</b> is not writable. Please change file permissions, " +
"then restart the servlet container.</p>" +
"<p>(You can override the directory location by specifying -Dsubsonic.home=... when " +
"starting the servlet container.)</p>");
} else {
subsonicHomeVerified = true;
logServerInfo(req);
chain.doFilter(req, res);
}
}
示例5: createDataSource
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
private DataSource createDataSource() {
File subsonicHome = SettingsService.getSubsonicHome();
DriverManagerDataSource ds = new DriverManagerDataSource();
ds.setDriverClassName("org.hsqldb.jdbcDriver");
ds.setUrl("jdbc:hsqldb:file:" + subsonicHome.getPath() + "/db/subsonic");
ds.setUsername("sa");
ds.setPassword("");
return ds;
}
示例6: doFilter
import net.sourceforge.subsonic.service.SettingsService; //导入方法依赖的package包/类
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)
throws IOException, ServletException {
// Already verified?
if (subsonicHomeVerified) {
chain.doFilter(req, res);
return;
}
File home = SettingsService.getSubsonicHome();
if (!directoryExists(home)) {
error(res, "<p>The directory <b>" + home + "</b> does not exist. Please create it and make it writable, " +
"then restart the servlet container.</p>" +
"<p>(You can override the directory location by specifying -Dsubsonic.home=... when " +
"starting the servlet container.)</p>");
} else if (!directoryWritable(home)) {
error(res, "<p>The directory <b>" + home + "</b> is not writable. Please change file permissions, " +
"then restart the servlet container.</p>" +
"<p>(You can override the directory location by specifying -Dsubsonic.home=... when " +
"starting the servlet container.)</p>");
} else {
subsonicHomeVerified = true;
chain.doFilter(req, res);
}
}