Java URL
クラスをSpringプロジェクトに挿入したいと思っていますが、URLには(オープンしたいURLの)引数が入ります。注入URL()Spring Autowired
これを行うにはどうすればよいですか?
私は現在
private HttpURLConnection getConnectionHandler(String urlToPing) throws MalformedURLException, IOException, ProtocolException {
URL url = new URL(urlToPing);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
return connection;
}
代わりにプロパティ値を挿入してみませんか? – Leon
私はこのクラスを制御することはできません。そのURLのビルド済みのstd Javaクラス@Leon –
'String urlToPing'を' URL urlToPing'に変更するだけです... –