Azure Visual Studio(2012)工具无法加载未找到java文件的异常

时间:2013-05-22 19:24:34

标签: java azure jetty

我已经按照本教程进行操作 http://blogs.msdn.com/b/dachou/archive/2010/03/21/run-java-with-jetty-in-windows-azure.aspx 但是当我运行程序时,我得到“文件未找到异常”。 我已经尝试了很多次但它不起作用。 现在我只添加了\ app \ java到workerrole,我使用了这段代码

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Threading;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.Diagnostics;
using Microsoft.WindowsAzure.ServiceRuntime;
using Microsoft.WindowsAzure.Storage;

namespace JettyWorkerRole
{
    public class WorkerRole : RoleEntryPoint
    {
        public override void Run()
        {
            string response = "";

            System.IO.StreamReader sr; 

            // This is a sample worker implementation. Replace with your logic.
            Trace.TraceInformation("JettyWorkerRole entry point called", "Information");

            string roleRoot = Environment.GetEnvironmentVariable("RoleRoot");
            string port = RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["HttpIn"].IPEndpoint.Port.ToString();
            string address = RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["HttpIn"].IPEndpoint.Address.ToString();
            Trace.TraceInformation("RADICE " + roleRoot, "Information");
            Trace.TraceInformation("PORTA " + port, "Information");
            Trace.TraceInformation("INDIRIZZO " + address, "Information");
            string jreHome = roleRoot + @"\approot\app\jre7";
            Trace.TraceInformation("JAVA 7 " + jreHome, "Information");


            Process proc = new Process();
            proc.StartInfo.UseShellExecute = false;
            proc.StartInfo.RedirectStandardOutput = true;
            proc.StartInfo.FileName = String.Format("\"{0}\\bin\\java.exe\"", jreHome);
            //proc.StartInfo.Arguments = String.Format("-Djetty.port={0} -Djetty.home=\"{1}\" -jar \"{1}\\start.jar\"", port, jettyHome);
            proc.StartInfo.Arguments = String.Format("-version");
            proc.EnableRaisingEvents = false;
            proc.Start();

            sr = proc.StandardOutput;
            response = sr.ReadToEnd(); 

            while (true)
            {
                Thread.Sleep(10000);
                Trace.TraceInformation("Working", "Information");
            }
        }

        public override bool OnStart()
        {
            // Set the maximum number of concurrent connections 
            ServicePointManager.DefaultConnectionLimit = 12;

            // For information on handling configuration changes
            // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.

            return base.OnStart();
        }
    }
}

但是我在proc.Start()中找不到alwais Win32异常文件。我该如何解决这个问题并使用Java(和jetty)?

1 个答案:

答案 0 :(得分:0)

这是因为默认情况下主机操作系统上没有安装JVM / JRE,并且找不到java.exe

有多种方法可以在托管的Azure计算机上安装JVM。您引用的博客条目中描述的只是通过向您的Azure项目添加jre6文件夹来执行“复制”安装。但请注意,实际的JRE二进制文件未包含在示例项目中,需要手动添加以及正确的部署设置。

另一个选项,如this MSDN blog中所述,是将您的JVM二进制文件放入blob存储并在角色启动时下载它们。